跨页面postback时传递JavaScript变量值

王朝html/css/js·作者佚名  2008-08-21
窄屏简体版  字體: |||超大  

需要从HTML页面传值给ASP.NET页面时,可以使用,很基本,保存下来,以备没学过ASP的新手们不急之需

<html>

<head>

<title>HTML Start Page</title>

</head>

<body>

<form id="Form1" method="post" action="WebForm1.aspx">

<input type="text" id="yourTextBox" name="yourTextBox" value="This is the HTML page TextBox value" />

<input type="hidden" id="yourHiddenElement" name="yourHiddenElement" value="This is the HTML page hidden element value" />

<input type="submit" value="Go" />

</form>

</body>

</html>

private void Page_Load(object sender, System.EventArgs e)

{

if ( !this.IsPostBack )

{

string textBoxValue = Request["yourTextBox"];

string hiddenElementValue = Request["yourHiddenElement"];

this.Response.Write("textBoxValue: " + textBoxValue + "<br>");

this.Response.Write("hiddenElementValue: " + hiddenElementValue + "<br>");

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航