![]() |
#2
bygg2007-11-06 11:47
|
我在客户端有Javascript:
var dsstr = "需要传的值";
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlHttp.onreadystatechange = handlestatechange;
xmlHttp.open("POST","ServerSide.aspx",true);
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
xmlHttp.send(dsstr);
我在服务期端(C#)如何获取send方法传过来的值???还有服务期端如何返回值给客户端?在线等!!!