用服务器端控件导致网页出问题,不知道什么原因
前台
<p>姓名 <input id="name" type="text" style="width:150px;" runat="server"/></p> <p>电话 <asp:TextBox ID="phone" style="width:150px;" runat="server"></asp:TextBox></p> <p>住址 <asp:TextBox ID="address" style="width:150px;" runat="server"></asp:TextBox></p> <asp:Button ID="Button1" Text="搜索" style="width:85px" onclick="Button1_Click" runat="server"/>
protected void Button1_Click(object sender, EventArgs e) { string a = this.name.Value; }