日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

转 JavaScript传值及.Net传值方式总结

發(fā)布時間:2023/12/20 javascript 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 转 JavaScript传值及.Net传值方式总结 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

一,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)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。