62,253
社区成员
发帖
与我相关
我的任务
分享
function GetInfo(){
$.ajax(
{
type:'POST',
url:'SomePage.aspx',
dataType:'text',
data:{strData:'yourValue'},
cache:false,
success:funtion getReturnValue(r){alert(r);}
}
);
//向客户端发送数据
Response.Clear();
Response.Expires = 0;
Response.ContentType = "application/xml";
Response.Write(returnValue);
Response.End();