VStudio 2010 - ASP.NET - 我在各种标签(标记)中丢失了 Intellisense

发布于 2024-11-08 11:33:00 字数 771 浏览 1 评论 0原文

我在以下代码行中没有得到智能感知(请参阅 MyStore.CustomerID):

<asp:TextBox ID="TB1" runat="server" Text="<%# MyStore.CustomerID %>" />
<asp:TextBox ID="TB1" runat="server" Text='<%# MyStore.CustomerID %>' />
<a href="<%# MyStore.CustID %>"></a>

但是,我确实在这里得到了它:

<asp:TextBox ID="TB1" runat="server" Text="blank" />
<%# MyStore.CustomerID %>

如何在这些代码中打开智能感知其他标签?

我真的很想在标记内设置各种控件的文本/值,以清理代码隐藏中的空间。

注意

ASP.NET 标记智能感知在 Visual Studio 2010 中不起作用

I get no intellisense in the following lines of code (see MyStore.CustomerID):

<asp:TextBox ID="TB1" runat="server" Text="<%# MyStore.CustomerID %>" />
<asp:TextBox ID="TB1" runat="server" Text='<%# MyStore.CustomerID %>' />
<a href="<%# MyStore.CustID %>"></a>

But, I do get it here:

<asp:TextBox ID="TB1" runat="server" Text="blank" />
<%# MyStore.CustomerID %>

How do I turn on intellisense within these other tags?

I really would like to set text/value of various controls from within the markup to clear up space in the code-behind.

Note

Not the same issue as ASP.NET Markup Intellisense not working in Visual Studio 2010

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

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

发布评论

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

评论(1

人疚 2024-11-15 11:33:00

是的,这对我来说也是一个案例。当您使用代码块 (<%:...%>) 时,当它们与任何其他 HTML 属性分开时,您将获得智能感知。但是当您在 HTML 属性内使用它们时,您将无法获得智能感知。

所以你并没有失去它,它根本就不存在。

这是一个引述;

不幸的是,代码 IntelliSense 不是
代码块中支持的
Web 表单中的 HTML 属性内
文件。 Razor 支持此功能
但是 (CSHTML) 文件。

也可以看看这个;

http://connect.microsoft.com/VisualStudio/feedback/details/617937/intellisense-uses-wrong-context-on-c-nuggets-in-asp-net-mvc2-views

yes, this is a case also for me. When you are working with code nuggets (<%:...%>), you get intellisense when they are separate from any other HTML attributes. but when you work with them inside a HTML attribute, you get no intellisense.

So you didn't lose it, it hasn't been there at all.

here is a quote;

Unforunately code IntelliSense is not
supported in code nuggets that are
within HTML attributes in Web Forms
files. This is supported in Razor
(CSHTML) files however.

see this one as well;

http://connect.microsoft.com/VisualStudio/feedback/details/617937/intellisense-uses-wrong-context-on-c-nuggets-in-asp-net-mvc2-views

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