2013年7月22日 星期一

Jquery AJAX

前台:
<input id="Button1" type="button" value="回復" onclick="SelectChange()"/>
function SelectChange() {
        var str1 = "test";

        var ajaxUrl = 'SelectUpdata.ashx';
        var data = { s1: str1 };
        $.ajax({
            async: false,
            type: 'POST',
            url: ajaxUrl,
            data: data,
            dataType: 'text',
            success: function (s1) {    //執行成功後接收回傳值
                alert(s1);
            },
            complete: function () {    //執行結束
                alert('OK');
             },
             beforeSend: function () {    //開始執行
                 alert('請稍等');
             }

        });

    }

後台:
.ashx
string select = context.Request["s1"];
context.Response.ContentType = "text/plain";
context.Response.Write(select );

標籤: ,

0 個意見:

張貼留言

訂閱 張貼留言 [Atom]

<< 首頁