I have a query which will select the values of database. The query is as follows.
STRSQL= “SELECT ROLL_NO,STUDENT_NAME FROM STUDENT_MASTER ORDER BY ROLL_NO”
And the html file is as follows
<td><b>Roll No</td>
<td><b>Name</td>
</tr>
<%While Not rs.eof %>
<tr align="center" class="tb2">
<td><%response.write rs("ROLL_NO")%></td>
<td><%response.write rs("STUDENT_NAME")%></td>
</tr>
<%
rs.movenext
Wend %>
Now in this How can I get a data from the database as a hyperlink.Please help
to show the student name as a link,
<% =something %>is same as<% Response.write something %>And if you want to pass the roll_id to the next page: