我想知道Html控件Html控件和asp.net網頁控件
和asp.net網頁控件究竟有何區別。爲什麼我們需要這兩種類型的控制?
我已經把我的網頁上一個HTML輸入文本,HTML按鈕和asp.net文本框和ASP.NET按鈕
<input id="Text1" type="text" />
<input id="Button2" type="button" value="button" />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" />
當我拿查看源代碼,兩者都同樣呈現
<input id="Text1" type="text" />
<input id="Button2" type="button" value="button" />
<input name="TextBox1" type="text" id="TextBox1" />
<input type="submit" name="Button1" value="Button" id="Button1" />
網頁控制優於HTML控件。
我在互聯網上的一些環節,但尚不清楚究竟
他們正在使用的東西。
http://www.extremeexperts.com/Net/FAQ/DiffBetweenServerandHTMLControls.aspx。
請問任何人請解釋這兩個控件之間的區別。