|
|
|
พยามแล้วแต่ไม่ได้ค่ะ คือหนูพยามทำการค้นหาข้อมูลโดยใช้2เงื่อนไขพยามศึกษาและหาคำตอบของคนอื่นที่เขียน |
|
|
|
|
|
|
|
ลอง echo ในส่วนของ sql นะครับ แล้วเอาค่าที่ได้ไปทดสอบบน phpMyAdmin และก็ดูว่ามันน่าจะผิดส่วนไหนครับ
|
|
|
|
|
Date :
8 มิ.ย. 2548 10:13:40 |
By :
@W_IN |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือเฉพาะKeyword Carlender ปกติทำงานได้ค่ะแต่จะแสดงข้อมูลงานของทุกกลุ่มงานหนูอยากจะทำให้แสดงเฉพาะกลุ่มงานที่เลือกค่ะจะกำหนดตายตัวเลยก็ได้ค่ะโดยใช้ตัวเลขแทนกลุ่มงานแต่ขอให้ค้นหาได้จากวันที่ค่ะ Code ที่ใช้เป็นดังนี้ค่ะ..........ขอบคุณค่ะที่กรุณาตอบ
<%
keyword=Request.Form("keyword")
if keyword="" then
keyword=Request.QueryString("keyword")
end if
%>
<form name="form1" method="post" action="Find_ot.asp">
<font size="2">การป้อนข้อมูลค้นหา </font><font size="2">เช่นวันที่
5 เมษายน 2548 ป้อนเป็น<font color="#FF0000"> 4/5/2005</font>
<input name="keyword" type="text" id="keyword" value="<%=keyword%>">
<input type="submit" name="Submit" value="ค้นหา">
<input type="reset" name="Submit2" value="Reset">
</font>
</form>
<font size="2">
<%
if keyword="" then
Response.write("<br>กรุณากรอก Keyword เพื่อค้นหาจากวันที่<hr>")
else
pageLen = 50 'กำหนดจำนวนแต่ละหน้าที่ต้องการแสดงกี่ Reccord
pageNo = request.QueryString("pageNo")
if pageNo="" then pageNo = 1
Set Conn=Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("Main_database.mdb"),"" , ""
'หรือจะใช้เป็น Conn.Open "product","",""
sql ="Select * From AWH where CarlenderD like '%"&keyword&"%'order by Work_Group_Code ASC"
Set RS =Server.CreateObject("ADODB.Recordset")
RS.open Sql,Conn,1,3
Nrecord=RS.recordcount
Rs.pageSize = pageLen
totalPage = Rs.PageCount
If Rs.EOF Then
%>
ไม่มีข้อมูลในตาราง !
<%Else%>
</font>
<table width="100%">
<tr bgcolor="Silver">
<td width="11%"><div align="center"><font size="2">วันที่ทำงาน</font></div></td>
<td width="7%"><div align="center"><font size="2">Order</font></div></td>
<td width="7%"><div align="center"><font size="2">เครื่องมือ</font></div></td>
<td width="6%"><div align="center"><font size="2">กลุ่มงาน</font></div></td>
<td width="6%"><div align="center"><font size="2">ผู้ทำงาน</font></div></td>
<td width="8%"><div align="center"><font size="2">ชม.ปกติ</font></div></td>
<td width="8%"><div align="center"><font size="2">ล่วงเวลา</font></div></td>
<td width="8%"><div align="center"><font size="2">ชม.เครื่อง</font></div></td>
</tr>
<%
recNo=1
Do While Not RS.EOF and recNo <= pageLen
%>
<tr bgcolor="#FFFFCC">
<td><div align="center"><font size="2"><%= Rs("CarlenderD")%></font></div></td>
<td><div align="left"><font size="2"><%= Rs("ONO")%></font></div></td>
<td><div align="center"><font size="2"><%= Rs("Group_Code")%></font></div></td>
<td><div align="center"><font size="2"><%= Rs("Work_Group_Code")%></font></div></td>
<td><div align="center"><font size="2"><%= Rs("Employee_No")%></font></div></td>
<td><div align="center"><font size="2"><%= Rs("MH")%></font></div></td>
<td><div align="center"><font size="2"><%= Rs("TCode")%></font></div></td>
<td><div align="center"><font size="2"><%= Rs("MC")%></font></div></td>
</tr>
<%
recNo=recNo+1
RS.MoveNext
Loop
rs.close
conn.close
%>
</table>
<font size="2">
<%
end if
%>
<br>
<br>
จำนวน <%=Nrecord%> รายการ<br>
ขณะนี้อยู่หน้า <%=pageNo%> ในทั้งหมด <%=totalPage%> หน้า
<%
if cint(pageno) > 1 then %>
<br>
<a href="Find_ot.asp?pageNo=1&keyword=<%=keyword%>">หน้าแรก</a>
<a href="Find_ot.asp?pageNo=<%=pageNo-1%>&keyword=<%=keyword%>">ย้อนกลับ</a>
<% end if
if cint(pageno) < totalPage then %>
<a href="Find_ot.asp?pageNo=<%=pageNo+1%>&keyword=<%=keyword%>">หน้าต่อไป</a>
<a href="Find_ot.asp?pageNo=<%=totalPage%>&keyword=<%=keyword%>">หน้าสุดท้าย</a>
<% end if
%>
<br>
กระโดดไปหน้า
<%for idx = 1 to totalPage
%>
<a href="Find_ot.asp?pageNo=<%=idx%>&keyword=<%=keyword%>">
<% if idx=cint(pageno) then%>
<b><%=idx%></b>
<%else %>
<%=idx%>
<%end if%>
</a>
<%
next
end if
%> </td>
|
|
|
|
|
Date :
8 มิ.ย. 2548 13:01:00 |
By :
โอ๋ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|