讓說,我對ASP.NET網絡表單TextBox控件的設置值
protected void Page_Load(object sender, EventArgs e)
{
TextBox1.Text = "123";
}
網頁加載這段代碼,這是我在aspx文件控制
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
如果我改變從123到12548的文本數據或任何東西在前端,然後我點擊按鈕 現在這是我的身後按鈕單擊事件代碼
protected void Button1_Click(object sender, EventArgs e)
{
string s = TextBox1.Text;
}
現在在TextBox1.Text
我應該得到12548或更新值,而不是我已經在頁面加載中設置了123。
現在我想獲取更新的值,我該如何正確地做到這一點。