JavaScript傳值及.Net傳值方式總結

來源:互聯網
上載者:User
一,JavaScript傳值,主要用到opener.document……

        例如:Trans_aa.htm,Trans_bb.htm

<html>
<head>
<script language="JavaScript" type="text/JavaScript">
    var neww;
    function azxfds(axzfds,axcfds,acxfds)
    {
        neww=window.open(axzfds,axcfds,acxfds);neww.window.focus();
    }
</script>
</head>
<body>
<form>
<input type="text" id="aa"><input type="button" onclick="javascript:azxfds('http://localhost/JavaScript/Trans_bb.htm','Yaldex','width=400,height=300')" value="調出bb.html">
</form>
</body>
</html>

 

<html>
<head>
</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="確定" onclick="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")取不到值,想一想為什麼???
    還可以調用1.aspx的屬性和方法:
    Dim 11 as i=Ctype(Context.Handle,1)
    11.test()

補充一下,
還有兩種方法:
通過cookie,和viewStatus也可以達到傳值的目的。

在javascript裡面用location.search也可以傳值,就好象.net的查詢字串傳值法一樣~~
如果是開啟新視窗的可以用opener來傳
如果是彈出網頁對話方塊就用returnValue~~~

在.net裡面傳值的方式好多
url(也就是查詢字串),Session,context,還有cookie,viewstate,cache

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.