在后台操作标记的runat="server"的html标签

价格:
<input id="tbPrice" type="text" runat="server" /> 
                
HtmlInputText tbPrice = Page.FindControl("tbPrice") as HtmlInputText;
Page.Response.Write(tbPrice.Value);
tbPrice.Value = "200000";
原文地址:https://www.cnblogs.com/Luoma_HaoWei/p/3274708.html