使用 URL 方式取得傳回值

利用 JavaScript tag 的 src 屬性 , 將所連結的目標 , 來取得傳回值

例 :

1. 在你的網頁中 ( 假設為 testCounter.aspx ) 於 body 區塊內 , 鍵入

<body>

<script src='http://你的URL/testGetCounter.aspx'></script>

</body>

2. 在呼叫的來源網頁 testGetCounter.aspx 內 Page_Load 事件啟用時 , 鍵入

protected void Page_Load(object sender, EventArgs e) {

Response.Write("document.write('hollo world!!!')");

Response.End();

}

3. 啟動 testCounter.aspx 網頁即會見到經 JavaScript 呼叫後傳回了 testGetCounter.aspx 所執行的結果了


沒有留言: