使用母版页后服务器控件,HTML控件的名称变化区别

使用母版页后

 

对于HTML控件:其id,name值不会发生变化

 

对于服务器端控件:

<asp:TextBox ID="txtAnswer" runat="server" Height="82px" TextMode="MultiLine" Width="625px" MaxLength="2000"></asp:TextBox>

 

实际为:

id:ctl00_ContentPlaceHolder1_txtAnswer

name:ctl00$ContentPlaceHolder1$txtAnswer

 

再弱弱的插一句:

表单中的控件指定name值,POST提交后台后,用name取值^-^

你可能感兴趣的:(html,server,服务器,asp,textbox)