[求助] asp.net 中使用 xmlhttp 的问题
我想用xmlhttp实现页面无刷新更新数据,客户端提交按钮代码如下。但不知服务器端代码应写在哪个部分,比如说在page_load 等等。急用,请大虾赐教,不胜感激!!!!
<script id="clientEventHandlersJS" language="javascript">
<!--
function Button1_onclick() {
var xmlh = new ActiveXObject("Microsoft.XMLHTTP");
xmlh.open("post","chat_server.aspx",false);
xmlh.send(document.all.Textarea2.innertext);
Textarea1.innertext=xmlh.responsetext;
}
//-->
</script>