|
|
|
สอบถามเรื่องบทเรียนของ asp ajax ครับผมติดปัญหาอะครับ |
|
|
|
|
|
|
|
ตัวอย่าง Code ในบทเรียนครับผมลองเขียนแบบนี้ครับโดยใช้ <a href="JavaScript:doCallAjax(document.getElementById('txtZone').value,'A');">
Code (ASP)
<%
'*** By Weerachai Nukitram ***'
'*** http://www.ThaiCreate.Com ***'
Option Explicit
%>
<html>
<head>
<title>ThaiCreate.Com Ajax Tutorial</title>
</head>
<script language="JavaScript">
var HttPRequest = false;
function doCallAjax() {
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest) {
alert('Cannot create XMLHTTP instance');
return false;
}
var url = 'FinalSearch.asp';
var pmeters = "tSearch=" + encodeURI( document.getElementById("txtSearch").value) +
"&tZone=" + encodeURI( document.getElementById("txtZone").value );
HttPRequest.open('POST',url,true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", pmeters.length);
HttPRequest.setRequestHeader("Connection", "close");
HttPRequest.send(pmeters);
HttPRequest.onreadystatechange = function()
{
if(HttPRequest.readyState == 3) // Loading Request
{
document.getElementById("mySpan").innerHTML = "Now is Loading...";
}
if(HttPRequest.readyState == 4) // Return Request
{
document.getElementById('mySpan').innerHTML = HttPRequest.responseText;
}
}
}
</script>
<body>
<h1>Register Form</h1>
<span id="mySpan"></span>
<table width="274" border="1">
<tr>
<th width="117">
<div align="left">test1</div></th>
<th><a href="JavaScript:doCallAjax(document.getElementById('txtSearch').value,'1');"> test1 </a></th>
</tr>
<tr>
<th width="117">
<div align="left">test2</div></th>
<th><a href="JavaScript:doCallAjax(document.getElementById('txtSearch').value,'2');"> test2 </a></th>
</tr>
<tr>
<th width="117">
<div align="left">test3</div></th>
<th><a href="JavaScript:doCallAjax(document.getElementById('txtZone').value,'A');"> test3 </a></th>
</tr>
<tr>
<th width="117">
<div align="left">test4</div></th>
<th width="236"><a href="JavaScript:doCallAjax(document.getElementById('txtZone').value,'B');"> test4 </a></th>
</tr>
</table>
<br>
</body>
</html>
หน้า FinalSearch.asp
เขียนทดสอบรับค่า tSearch และ tZone ไม่มีการส่งค่ามาเลยครับแถมบอกว่า error ใน
<a href="JavaScript:doCallAjax(document.getElementById('txtZone').value,'A');"> test3 </a>
ผมเพิ่งหัดเขียนร่วมกับ ajax รบกวนผู้รู้หน่อยครับผมต้องแก้ไขยังไงดีครับ ขอบคุณมากๆครับ
Tag : ASP, Ms SQL Server 2005
|
ประวัติการแก้ไข 2011-12-12 11:32:20
|
|
|
|
|
Date :
2011-12-12 11:30:48 |
By :
yatard |
View :
1540 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Error ว่าอะไรครับ
|
|
|
|
|
Date :
2011-12-12 13:00:15 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|