WEB开发网
开发学院网页设计JavaScript 跨页面postback时传递JavaScript变量值 阅读

跨页面postback时传递JavaScript变量值

 2008-08-20 19:59:51 来源:WEB开发网   
核心提示:需要从HTML页面传值给asp.net页面时,可以使用,跨页面postback时传递JavaScript变量值,很基本,保存下来

需要从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>");
 }
}

Tags:页面 postback 传递

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接