code นี้ work นะคะ มันแสดง department นีงก็ชื่อนึง
แต่ทำอย่างใรมันจึงแสดงเป็น group heading ของ department คะ
คือ department นึง ก็แสดงชื่อใน department นั้น รวมกัน
ช่วยแก้ไขด้วยค่ะ
ขอบคุณค่ะ
<html>
<head>
<title>display in department group heading</title>
</head>
<body>
<%
Set Conndb = Server.createObject("ADODB.Connection")
Conndb.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="& Server.MapPath("/../db/recruit.mdb")
Sql = "SELECT * FROM recruit,Department WHERE recruit.DepartmentID = Department.DepartmentID"
Set Rs = Server.CreateObject("ADODB.Recordset")
Rs.Open Sql, Conndb,1,3
%>
<table border=1>
<% Do While Not Rs.Eof %>
<tr>
<td colspan=2><center><%=Rs("DepartmentT")%></center></td>
</tr>
<tr>
<td colspan=2><center><%=Rs("Department.DepartmentID")%></center></td>
</tr>
<tr>
<td colspan=2><center><%=Rs("recruit.DepartmentID")%></center></td>
</tr>
<tr>
<td ><%=Rs("NameT")%></td>
<td ><%=Rs("qualification")%></td>
</tr>
<%Rs.MoveNext
Loop %>
<%Rs.Close
set Rs = Nothing%>
</table>
</body>
</html>
<%
Conndb.Close
Set Conndb = Nothing
%>