javascript
转 JavaScript传值及.Net传值方式总结
一,JavaScript傳值,主要用到opener.document……
??????? 例如:Trans_aa.htm,Trans_bb.htm
<html>
<head>
<script language="JavaScript" type="text/JavaScript">
<!--
//Made by 1st JavaScript Editor
//http://www.yaldex.com
//Come and get more (free) products
var neww;
? function azxfds(axzfds,axcfds,acxfds)
??? {neww=window.open(axzfds,axcfds,acxfds);
neww.window.focus();
}
//-->
</script>
?
<title></title>
</head>
<body>
<form>
<input type="text" id="aa"><input type="button" οnclick="javascript:azxfds('http://localhost/JavaScript/Trans_bb.htm','Yaldex','width=400,height=300')" value="調(diào)出bb.html">
</form>
</body>
</html>
?
<html>
<head>
<title></title>
</head>
<body>
<script language="javascript" type="text/javascript">
function Valid()
{
var Strbb=document.getElementById("bb").value;
opener.document.getElementById("aa").value=Strbb;
}
</script>
<form>
<input type="text" id="bb"> <input type="button"? value="確定" οnclick="javascript:Valid();window.close();">
</form>
</body>
</html>
二,.Net傳值方式主要有以下幾種
??? 1,url傳值,如:
??????? CheckPwd.aspx?user=uservalue&pwd=pwdvalue
???2,Session傳值
?????? 如:Session("role")="Administrator"
???3,Viewstate("role")="Administrator" ,用法和Session大致相同
?? 4,Context傳值
??????? 如:頁面1.aspx有一個TextBox1.Text,一個Button1,一個function test()
?????? Context.Items.Add("value",TextBox1.Text)
?????? Server.Transfer("2.aspx",True)?????? '如果為FALSE,2.aspx將取不到1.aspx中的值
?????? 在頁面2.aspx中,提取需要的值
?????? Dim str as string=Context.Items("value").tostring
????? 或 str=Request.From("TextBox1")
????? 但是:str=Request.QeuryString("TextBox1")取不到值,想一想為什么???
??
?????還可以調(diào)用1.aspx的屬性和方法:
???? Dim 11 as i=Ctype(Context.Handle,1)
?????? 11.test()
?Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1191878
轉(zhuǎn)載于:https://www.cnblogs.com/duliang/archive/2006/09/09/499650.html
總結(jié)
以上是生活随笔為你收集整理的转 JavaScript传值及.Net传值方式总结的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 园区网基础问题集
- 下一篇: Five bugs in five mi