|
|
|
อยากได้ Code ตัวอย่าง ระบบ search ข้อมูลจาก DB อยากได้ Code ตัวอย่าง ระบบ search ข้อมูลจากดาต้าเบส |
|
|
|
|
|
|
|
ลองเข้าไปอ่านใน ASP Tutorial หรือยังครับ
ถ้ายังเข้าไปอ่านก่อน แล้วลองประยุกต์ใช้ดูก่อนครับ ถ้าไม่ได้หรือติดปัญหายังงัยเอาปัญหามาโพสถามกันนะครับ เราจะได้ความรู้เพิ่มเติมและเพิ่มประสบการณ์ตัวเองด้วยคับ
อ่อนี้อีกอันลองอ่านดูคับASP Microsoft Access Search Record Paging
*หมายเหตุ : ไม่รู้ว่าใช้อะไรทำฐานข้อมูล
|
|
|
|
|
Date :
2009-09-16 14:26:01 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ๊ะเค ขอบคุณค่ะ จะลองดูถ้าติด จะโพสต์ถามกูรูอีกครั้งค่ะ ขอบคุณค่ะ
*หมายเหตุ : ใช้ฐานข้อมูล sql server2000
|
|
|
|
|
Date :
2009-09-16 14:39:03 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ว่าฐานข้อมูลอะไรก็ต้องใช้ SQL Command ที่ไม่ต่างกันมากหรอกคับ ลองศึกษานะ
|
|
|
|
|
Date :
2009-09-20 20:51:12 |
By :
inanosms |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP & SQL Server Tutorial</title>
</head>
<body>
<form name="frmSearch" method="get" action="<%=Request.ServerVariables("SCRIPT_NAME")%>">
<table width="599" border="1">
<tr>
<th>Keyword
<input name="txtKeyword" type="text" id="txtKeyword" value="<%=Request.QueryString("txtKeyword")%>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<%
if Request.QueryString("txtKeyword") <> "" Then
Dim Conn,strSQL,objRec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "Driver={SQL Server};Server=localhost;Database=mydatabase;UID=sa;PWD=;"
'*** Search By Name or Email ***'
strSQL = "SELECT * FROM customer "
strSQL = strSQL & "WHERE (Name LIKE '%"& Request.QueryString("txtKeyword") &"%' "
strSQL = strSQL & "or Email LIKE '%"& Request.QueryString("txtKeyword") &"%' ) "
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open strSQL, Conn, 1,3
%>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </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
End IF
%>
</body>
</html>
|
|
|
|
|
Date :
2009-09-21 09:09:10 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|