asp.net Ajax之無重新整理評論介紹

來源:互聯網
上載者:User

首先還是建一個DoComments.aspx頁面和一個DealComments.ashx頁面(代碼基本上都有注釋,如果沒寫注釋,請先看前幾篇!)。
Docomments.aspx頁面中的代碼為: 複製代碼 代碼如下:<head runat="server">
<title></title>
<script type="text/javascript">
var objXmlHttp = null;
function CreateXMLHTTP() {
if (window.ActiveXObject) {
objXmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} else {
if (window.XMLHttpRequest) {
objXmlHttp = new XMLHttpRequest();
} else {
alert("初始化XMLHTTP錯誤!");
}
}
}
function DoComments() {
var data = "txtComments" + document.getElementById("txtComment").value;
CreateXMLHTTP();
objXmlHttp.open("POST", "DealComments.ashx", true);
objXmlHttp.onreadystatechange = function () {//在伺服器響應後調用
if (objXmlHttp.readyState >= 4) {
if (objXmlHttp.status == 200) {
var result = objXmlHttp.responseText;//獲得伺服器返回的字串
if (result == "true") {
var cTable = document.getElementById("commentTable");//獲得評論的表格對象
var newRow = cTable.insertRow(cTable.rows.length);//在表格的最後一行再添加一行
var cTd = newRow.insertCell();//在新添加的行中再添加一列
cTd.innerHTML = document.getElementById("txtComment").value;//設定列內容為剛發布的評論內容
} else {
alert("objXmlHttp.status");
}
}
}
}
objXmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); //添加自訂HTTP頭道請求
objXmlHttp.send(data);//發送請求到伺服器
}
</script>
</head>
<body>
評論資訊:
<table id="commentTable" style="width: 600px; border: 1px solid #000;" border="1"
cellpadding="0" cellspacing="0">
<tr>
<%--<td width="30%" class="style1">使用者名稱</td>--%>
<td>
內容
</td>
</tr>
</table>
<br />
<hr />
<table style="width: 700px; border: 1px solid #000; text-align: left;" border="1"
cellpadding="0" cellspacing="0">
<tr>
<td>
發布內容:
</td>
</tr>
<tr>
<td>
<textarea id="txtComment" cols="60" rows="10"></textarea>
</td>
</tr>
<tr>
<td>
<input type="button" onclick="DoComments()" id="btnComment" value="發布評論" />
</td>
</tr>
</table>
</body>
</html>

DealComments.ashx中的代碼如下:複製代碼 代碼如下:public void ProcessRequest(HttpContext context)
{
string strComment = context.Request.Form["txtComments"];//獲得傳過來的內容
if (string.IsNullOrEmpty(strComment))//如果不為空白,返回ture
{
context.Response.Write("true");
}
else
{
context.Response.Write("false");
}
context.Response.End();
}

簡單吧!初學的童鞋......呵呵、、、、、、本系列只適合初學者,請大牛勿笑啊!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.