石国庆 发表于 2013-4-18 12:08
上面的问题不要用隐藏域的方法,还有就是这段脚本在后台的哪里写啊,谁能写出一段完整的代码看看
方法三:1 ...
不知道这样行不行?
前台:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form runat="server">
<input type="text" value="<%=N %>" id="text1" />
<input type="text" value="" id="text2" />
</form>
</body>
</html>
后台:
protected int N = 20;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
int n = 60;
Page.ClientScript.RegisterStartupScript(this.GetType(), "value", "document.getElementById('text2').value=" + n +";" , true);
}
} |