asp.net中ListBox控件报错: 类型“ListBox”的控件“ListBox1”必须放在具有runat=server 的窗体标记内。
可是我在页面中代码如下:<asp:ListBoxID="ListBox1"runat="server"Height="206px"OnSelectedIndexChang...
可是我在页面中代码如下:
<asp:ListBoxID="ListBox1"runat="server"Height="206px"OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"
Width="320px"AutoPostBack="True"></asp:ListBox>
如何解决?? 展开
<asp:ListBoxID="ListBox1"runat="server"Height="206px"OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"
Width="320px"AutoPostBack="True"></asp:ListBox>
如何解决?? 展开
4个回答
展开全部
<asp:ListBoxID="ListBox1"runat="server"Height="206px"OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"
Width="320px"AutoPostBack="True"></asp:ListBox>
改成
<form id="form1" runat="server">
<asp:ListBoxID="ListBox1"runat="server"Height="206px"OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"
Width="320px"AutoPostBack="True"></asp:ListBox>
</form>
ASP控件一般都是放在表单里,也可以在它的父元素上加上runat="server"
Width="320px"AutoPostBack="True"></asp:ListBox>
改成
<form id="form1" runat="server">
<asp:ListBoxID="ListBox1"runat="server"Height="206px"OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"
Width="320px"AutoPostBack="True"></asp:ListBox>
</form>
ASP控件一般都是放在表单里,也可以在它的父元素上加上runat="server"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的这个标签是不是放到<form id="form1" runat="server">标签外面去了?使得话移动刀里面去还是你的页面中没有<form id="form1" runat="server">标签,没有的话在body标签下加上<form id="form1" runat="server">和匹配的结束标签。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<asp:ListBoxID="ListBox1" runat="server" Height="206px" OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"
Width="320px" AutoPostBack="True" ></asp:ListBox>
两个属性间要有空格
Width="320px" AutoPostBack="True" ></asp:ListBox>
两个属性间要有空格
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询