Resharper 无法从母版页检测 ContentPlaceHolder ID?

发布于 2024-10-03 20:25:48 字数 1310 浏览 2 评论 0原文

我对 ASP.net 和 webform 应用程序非常陌生,并且继承了一些非常糟糕的代码,但我遇到了一个奇怪的问题,我无法弄清楚或弄清楚如何通过 google 搜索它。

在我的网站中,Resharper 在每个页面上都抱怨无法从母版页中找到相应的 ContentPlaceHolderID。

这是 ASP.net 标记的精简版(出于安全考虑):

<%@ page language="VB" masterpagefile="~/_site.master" autoeventwireup="false" inherits="MyWebPage" theme="Base" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder" Runat="Server">
  <h1>SomeText</h1>
  <br />
</asp:Content>

这是 _site.master 文件(位于网站的根目录):

<%@ master language="VB" inherits="_CompanyName" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head runat="server">
    <title>SomeTitle</title>    
  </head>
  <body>
    <form id="form1" runat="server">
      ....form stuff
    </form>
    <asp:ContentPlaceHolder runat="server" ID="ContentPlaceHolder"></asp:ContentPlaceHolder>
  </body>
</html>

几乎每个页面都会显示此错误。以下是 Resharper 错误消息的字面意思:“无法解析符号‘ContentPlaceHolder’。

有什么想法吗?有什么办法可以让 Resharper 停止显示此错误消息吗?它根本不会影响页面的实际渲染(据我所知) ,因为根据原始制作者的说法,页面显示正确,我只是想让 Resharper 玩得很好。

I'm very new to ASP.net and webform applications, and I'm inheriting some pretty bad code, but I've got a strange problem that I can't figure out or figure out how to google about it.

In my web site, Resharper is complaining on every page that it couldn't find the corresponding ContentPlaceHolderID from the master page.

Here's a stripped down (for security's sake) version of the ASP.net markup:

<%@ page language="VB" masterpagefile="~/_site.master" autoeventwireup="false" inherits="MyWebPage" theme="Base" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder" Runat="Server">
  <h1>SomeText</h1>
  <br />
</asp:Content>

And here's the _site.master file (located at the root of the web site):

<%@ master language="VB" inherits="_CompanyName" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head runat="server">
    <title>SomeTitle</title>    
  </head>
  <body>
    <form id="form1" runat="server">
      ....form stuff
    </form>
    <asp:ContentPlaceHolder runat="server" ID="ContentPlaceHolder"></asp:ContentPlaceHolder>
  </body>
</html>

Almost every page displays this error. Here's the literal Resharper error message: "Cannot resolve symbol 'ContentPlaceHolder'.

Any ideas? Any way I can have Resharper stop displaying this error message? It doesn't effect the actual rendering of the page at all (as far as I know), because the page displays correctly according to the original makers. I'm just trying to get Resharper to play nicely.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瘫痪情歌 2024-10-10 20:25:48

是的,现在可以了。

安装较新版本的 ReSharper(6.1 或更高版本)并重试。
我在早期版本的 ReSharper 中也遇到了同样的问题 - 但自版本 6.1 以来,问题就消失了。

请告诉它是否也解决了您的问题。

Yes, it can now.

Install a newer version of ReSharper (6.1 or later) and try it again.
I also experienced the same problem with earlier versions of ReSharper - but since the version 6.1, the problem just disappeared.

Plz tell if it solved your problem, too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文