Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
要在回发后将值从 javascript 传递到后面的代码,我使用以下代码:
string strRowNumberTblOne = Request.Form["iRowNumberTblOne"]; <input type="hidden" id="iRowNumberTblOne" name="iRowNumberTblOne" value="" />
有没有办法从后面的代码中清除输入字段?Request.Form 是只读的。
试试这个而不是你可以使用 Hidden TextBox ,像这样
<asp:TextBox ID="TextBox2" style="display:none" runat="server"></asp:TextBox>
在 JavaScript 中
varResult = document.getElementById('<%= TextBox2.ClientID%>');
添加runat="server". 然后设置它的Value属性。
runat="server"
Value