|
|
|
ASP สามารถดึงข้อมูลจาก DB แบบ Real Time ได้ไหมครับ ถ้ามีคน update ข้อมูลให้ทำการ ดึงข้อมูลใหม่มาแสดงทันที |
|
|
|
|
|
|
|
ขอบคุณครับ แต่มันเหมือนเป็นการ refresh ทุก 2 วิ ถ้ามีคนใช้งานระบบ 500 คนพร้อมกัน มันจะหน่่วง ระบบไหมอะครับ
|
|
|
|
|
Date :
2011-11-09 18:01:44 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
request ให้น้อย ๆ ทำงานให้น่อย ๆ ก็ไม่น่าจะมีปัญหาครับ
|
|
|
|
|
Date :
2011-11-10 10:07:02 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
<%
'*** By Weerachai Nukitram ***'
'*** http://www.ThaiCreate.Com ***'
%>
<html>
<head>
<title>ThaiCreate.Com Ajax Tutorial</title>
</head>
<script language="JavaScript">
var HttPRequest = false;
function doCallAjax(Sort) {
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 = 'AjaxASPRealtime2.asp';
var pmeters = 'mySort='+Sort;
HttPRequest.open('POST',url,true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", pmeters.length);
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 Onload="bodyOnload();">
<h1>My Customer</h1>
<form name="frmMain" action="" method="post">
<script language="JavaScript">
function bodyOnload()
{
doCallAjax('CustomerID')
setTimeout("doLoop();",2000);
}
function doLoop()
{
bodyOnload();
}
</script>
<span id="mySpan"></span>
</body>
</html>
ผมจะส่งข้อมูลไป อีกเพจนึงยังไงครับ ถ้า ตัว Query DB อยูี่ที่ อีกเพจ
Code (ASP)
<%
'*** By Weerachai Nukitram ***'
'*** http://www.ThaiCreate.Com ***'
Option Explicit
Dim strSort
strSort = Request.Form("mySort")
Dim Conn,strSQL,objExec,objRec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("db/mydatabase.mdb"),"" , ""
strSQL = "SELECT * FROM customer ORDER BY " & strSort & " ASC "
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open strSQL, Conn, 1,3
%>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center"><a href="JavaScript:doCallAjax('CustomerID')">CustomerID</a></div></th>
<th width="98"> <div align="center"><a href="JavaScript:doCallAjax('Name')">Name</a> </div></th>
<th width="198"> <div align="center"><a href="JavaScript:doCallAjax('Email')">Email</a> </div></th>
<th width="97"> <div align="center"><a href="JavaScript:doCallAjax('CountryCode')">CountryCode</a> </div></th>
<th width="59"> <div align="center"><a href="JavaScript:doCallAjax('Budget')">Budget</a> </div></th>
<th width="71"> <div align="center"><a href="JavaScript:doCallAjax('Used')">Used</a> </div></th>
</tr>
<%
While Not objRec.EOF
%>
<tr>
<td><div align="center"><%=objRec.Fields("CustomerID").Value%></div></td>
<td><%=objRec.Fields("Name").Value%></td>
<td><%=objRec.Fields("Email").Value%></td>
<td><div align="center"><%=objRec.Fields("CountryCode").Value%></div></td>
<td align="right"><%=objRec.Fields("Budget").Value%></td>
<td align="right"><%=objRec.Fields("Used").Value%></td>
</tr>
<%
objRec.MoveNext
Wend
%>
</table>
<%
objRec.Close()
Conn.Close()
Set objRec = Nothing
Set Conn = Nothing
%>
---------
Code
strSQL = "SELECT * FROM customer ORDER BY " & strSort & " ASC "
strsort ดึงอะไรมาครับ ดูแล้ว งง มาก
|
|
|
|
|
Date :
2011-11-10 11:50:34 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำให้มันดึงข้อมูลได้ละครับแต่ว่า
ข้อมูลที่ดึงมานั้น อัพเดทก็จริง แต่เวลาจะส่งค่าเมื่อกด submit มันเป็นค่าก่อนที่จะอัพเดทอะ
|
|
|
|
|
Date :
2011-11-10 14:58:26 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมส่งค่า 1 ไปที่ไฟล์ AjaxASPRealtime2.asp
ไฟล์นี้จะ รัน sql command ละได้ มาหลายค่า
Select * from xxxxxx
a_1 = Rs("1")
a_2 = Rs("2")
ตัวอย่าง
ผมจะส่ง ค่า a_1 กับ a_2 กลับมาแสดงในหน้า AjaxASPRealtime1.asp ยังไงอะครับ
โดยมันจะแสดงผล 2 จุด คือ
ราคาปัจจุบัน โชว์ a_1
ชื่อของคุณคือ โชว์ a_2
|
|
|
|
|
Date :
2011-11-10 15:30:35 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|