0
我想要在不使用「runat」屬性的情況下點擊html按鈕時獲取html文本框的值。我需要在代碼後面執行它,是否有可能?當html按鈕被點擊時獲取Html文本框的值
<button id="button1" onclick="btnclick">Click Here</button><input type="text" id="txtBox1" name="txtBox12" />
和我的代碼後面是這樣的:
protected void btnclick(object sender, EventArgs e)
{
string name = Request.Form["txtBox12"];
Response.Write(name);
}
但我想在後面 –
代碼來執行代碼,我說:要訪問任何控制代碼背後需要有RUNAT =服務器屬性附加到它。 – Elis
thak你我會試試 –