我有一个asp.net webforms(.Net 4.0,Visual Studio 2013)用户控件,它现在可以正常运行。它使用asp标签控件和资源标签根据当前用户的语言/文化设置来显示文本。
我需要添加一些文字。
但是,添加新的asp标签会自动创建解析错误。一旦出现错误,我不能删除标签。我必须将我的标记和设计器代码恢复到我上一次提交。在我看来,设计师代码中的某些东西必须被破坏,但我不知道从哪里开始寻找。
以下是解析错误:
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'OnlineRegistration.Confirmation'.
Source Error:
Line 1:
Line 2: <%@ Control Language="vb" AutoEventWireup="false" CodeBehind="Confirmation.ascx.vb" Inherits="OnlineRegistration.Confirmation" %>
Line 3:
Line 4: <asp:Label
Source File: /WebPages/ConfirmationUCTL/Confirmation.ascx Line: 2
这是用户控件的标记
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="Confirmation.ascx.vb" Inherits="OnlineRegistration.Confirmation" %>
<asp:Label
ID="litConfirmation"
runat="server"
meta:resourcekey="litConfirmationResource1"/>
<p>
<asp:Label
ID="litConfirmationThankYou"
runat="server"
meta:resourcekey="litConfirmationThankYouResource1"/>
<strong> 
<asp:Label
ID="litConfirmationNumber"
runat="server"
meta:resourcekey="litConfirmationNumberResource1"/>
</strong>. 
<asp:Label
ID="litConfirmationProcessing"
runat="server"
meta:resourcekey="litConfirmationProcessingResource1"/>
</p>
<asp:Label ID="Label1" runat="server" Text="Label" />
<p>
<asp:Label
ID="litConfirmationVNC"
runat="server"
meta:resourcekey="litConfirmationVNCResource1"/>
</p>
<p>
<asp:Label
ID="litConfirmationQuestions"
runat="server"
meta:resourcekey="litConfirmationQuestionsResource1"/>
</p>
<p>
<asp:Label
ID="litErrorSaving"
runat="server"
meta:resourcekey="litErrorSavingResource1"
CssClass="hide"/>
</p>
<asp:HyperLink
ID="linkPrintVRA"
runat="server"
meta:resourcekey="linkPrintVRAResource1"
CssClass="hide"/>
我所做的只是添加:
<asp:Label ID="Label1" runat="server" Text="Label" />
然后编译并运行。并出现解析错误。
知道从哪里开始寻找这个bug?
答案 0 :(得分:0)
我仍然不知道为什么会这样。但我接受了理论,即不知何故,designer.vb文件已损坏。
所以我将标记和代码隐藏文件的内容复制到文本文件中。
然后我从项目中删除了整个用户控件并保存并清理了应用程序。
然后我从头开始添加用户控件并保存。
最后,我将标记和代码的内容复制回用户控件,保存并编译。
现在为标记添加新控件工作正常。