问题描述
我在一个页面里加了一个userControl,就是拖进去了,然后提示说一页只能有一个服务器端Form标记。以下是Web页面的Html代码。我是个新手,希望各位大虾看看能不能帮忙。谢谢了。<%@Pagelanguage="c#"Codebehind="DoctorInfo.aspx.cs"AutoEventWireup="false"Inherits="MRS_WebUI.DoctorInfo"%><%@RegisterTagPrefix="uc1"TagName="vote"Src="Controls/vote.ascx"%><!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN"><HTML><HEAD><title>DoctorInfo</title>Inherits="MRS_WebUI.Controls.vote"%--><metaname="GENERATOR"Content="MicrosoftVisualStudio.NET7.1"><metaname="CODE_LANGUAGE"Content="C#"><metaname="vs_defaultClientScript"content="JavaScript"><metaname="vs_targetSchema"content="http://schemas.microsoft.com/intellisense/ie5"></HEAD><bodyMS_POSITIONING="GridLayout"><formid="Form1"method="post"runat="server"><FONTface="宋体"><asp:Buttonid="Update_voteInfo"style="Z-INDEX:101;LEFT:368px;POSITION:absolute;TOP:152px"runat="server"Text="Update_voteInfo"></asp:Button><div><uc1:voteid="Vote1"runat="server"></uc1:vote></div></FONT></form></body></HTML>
解决方案
解决方案二:
<uc1:voteid="Vote1"runat="server"></uc1:vote>这个控件里面不要再写<form...>
解决方案三:
同意楼上的,只要不出现两个<form></form>标记就OK了!~~加油吧,很容易学的!!!
解决方案四:
我改了改又出了新的问题,不知道是不是有联系的,系统帮我看看,类型“RadioButton”的控件“Vote1_rbtn_Items_0”必须放在具有runat=server的窗体标记内。我想做一个投票的模块,放在userControl里的。<%@Controllanguage="c#"Codebehind="vote.ascx.cs"AutoEventWireup="false"Inherits="MRS_WebUI.Controls.vote"%><!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN"><HTML><HEAD><title>vote</title><metacontent="MicrosoftVisualStudio.NET7.1"name="GENERATOR"><metacontent="C#"name="CODE_LANGUAGE"><metacontent="JavaScript"name="vs_defaultClientScript"><metacontent="http://schemas.microsoft.com/intellisense/ie5"name="vs_targetSchema"></HEAD><bodyMS_POSITIONING="GridLayout"runat="server"><TABLEheight="305"cellSpacing="0"cellPadding="0"width="596"border="0"ms_2d_layout="TRUE"><TRvAlign="top"><TDwidth="160"height="40"></TD><TDwidth="436"></TD></TR><TRvAlign="top"><TDheight="265"></TD><TD><TABLEid="Table2"height="264"cellSpacing="1"cellPadding="1"width="435"border="1"align="center"><TR><TDalign="center"bgColor="#00ffff"><FONTid="FONT1"face="宋体"runat="server"><asp:Labelid="lbl_Title"runat="server">xxxx</asp:Label></FONT></TD></TR><TR><TD><FONTface="宋体"><asp:RadioButtonListid="rbtn_Items"runat="server"Width="320px"><asp:ListItem></asp:ListItem><asp:ListItem></asp:ListItem><asp:ListItem></asp:ListItem></asp:RadioButtonList></FONT></TD></TR><TR><TDalign="center"bgColor="#33ffff"><FONTface="宋体"><asp:Buttonid="btn_vote"runat="server"Text="投票"></asp:Button> <asp:Buttonid="btn_result"runat="server"Text="结果"></asp:Button></FONT></TD></TR></TABLE></TD></TR></TABLE></body></HTML>