每个人都希望每天都是开心的,不要因为一些琐事扰乱了心情还,闲暇的时间怎么打发,关注图老师可以让你学习更多的好东西,下面为大家推荐跨页面postback时传递JavaScript变量值,赶紧看过来吧!
【 tulaoshi.com - Web开发 】
需要从HTML页面传值给ASP.NET页面时,可以使用,很基本,保存下来,以备没学过ASP的新手们不急之需
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)html
head
titleHTML 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");
}
}
来源:http://www.tulaoshi.com/n/20160219/1623909.html
看过《跨页面postback时传递JavaScript变量值》的人还看了以下文章 更多>>