首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

关于asp.net中页面间传值有关问题。

2012-02-29 
关于asp.net中页面间传值问题。急!!!在asp.net中有两个页面:a.aspx和b.aspx。在a.aspx页面中有一个textbox(t

关于asp.net中页面间传值问题。急!!!
在asp.net中有两个页面:a.aspx和b.aspx。在a.aspx页面中有一个textbox(tb_reader)和一个button控件。当点击button按钮时进入b.aspx页面用来选取值。当点击b.aspx中的确定按钮时,选中的值(depart)就传到a.aspx中的textbox中。也就是:tb_reader.Text=depart的值。这应当如何来实现呢?高手帮忙啊!!!!!

[解决办法]
网上转的
方法一:使用showModalDialog方法

新建文件lyh.html
输入

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN " "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns= "http://www.w3.org/1999/xhtml ">
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=gb2312 " />
<title> </title>
</head>

<body>
<input type= "button " onclick= "show( 'lyhshow.html ') " value= "弹出窗口 "> <br> <br> <br> 返回值:
<input type= "text " id= "returnvalue ">

<script language= "javascript ">
function show(math)
{
var val= showModalDialog(math, "true ", "dialogWidth:300px;dialogHeight:250px;status:no;help:no; ");
if(!val)
{
return;
}
else
{
document.all.returnvalue.value=val;
}
}
</script>
</body>
</html>


新建文件lyhshow.html
输入
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN " "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns= "http://www.w3.org/1999/xhtml ">
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=gb2312 " />
<title> 来自Eric空间 </title>
</head>

<body>
请输入: <input type= "text " id= "txtValue " value= " "> <br> <br> <br>
<input type= "button " onclick= "ReturnValue() " value= "返回输入值 ">

<script language= "javascript ">
function ReturnValue()
{
window.returnValue=document.all.txtValue.value;
window.close();
}
</script>
</body>
</html>


方法二:用window.open弹出窗口

新建文件lyh2.html
输入
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=gb2312 " />
<title> 来自Eric空间 </title>
</head>

<body>
<input type= "button " onclick= "show( 'lyhshow2.html ') " value= "弹出窗口 "> <br> <br> <br> 返回值:
<input type= "text " id= "returnvalue ">

<script language= "javascript ">
<!--
function show(math)
{

window.open (math, 'newwindow ', 'height=250,width=300,top=300,left=300,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no ')
//写成一行

}
-->
</script>
</body>
</html>
新建文件lyhshow2.html
输入

<html xmlns= "http://www.w3.org/1999/xhtml ">
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=gb2312 " />
<title> </title>
</head>

<body>
请输入: <input type= "text " id= "txtValue " value= " "> <br> <br> <br>
<input type= "button " onclick= "ReturnValue() " value= "返回输入值 ">



<script language= "javascript ">
function ReturnValue()
{
window.opener.document.all.returnvalue.value=document.all.txtValue.value;
window.close();
}
</script>
</body>
</html>
[解决办法]
手写的,还是热的!
tt.html:
<html>
<head> </head>
<body>
<script>
function test()
{
window.open( 'pp.html ');
}
</script>
<input type= 'text ' id= 'tt_t '>
<input type= 'button ' value= 'button ' onclick= 'test() '>
</body>
</html>
------------------------------
pp.html:
<html>
<head> </head>
<script>
function c()
{
window.opener.document.getElementById( 'tt_t ').value=document.getElementById( 'pp_t ').value;
window.close();
}
</script>
<body>
<input id= 'pp_t ' type= 'text '> <input type= 'button ' value= 'button ' onclick= 'c() '>
</body>
</html>
[解决办法]
在MSDN中找跨页面传值,都是你要的东西。PriviousPage....
[解决办法]
在前台查出你选中行的第六列的值。
function ADD()
{
var index = <%=this.GridItems.SelectedIndex%> ;//取子窗体控件选中的索引
var text = document.getElementById( "GridItems ").rows[index + 1].cells[1].innerText;
window.opener.document.form1.txtCoRemark.value = text;

window.close();
}

这是我以前做开发的时候写的一个单击父窗体BUTTON弹出子窗体,取子窗体Gridview我选择的那一行的第一列的值,点确定然后关闭子窗体,然后返回给父窗体的txtCoRemark文本框.

热点排行