在后台操作标记的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";
价格: <input id="tbPrice" type="text" runat="server" /> HtmlInputText tbPrice = Page.FindControl("tbPrice") as HtmlInputText; Page.Response.Write(tbPrice.Value); tbPrice.Value = "200000";