Hello.
How can i make these data like links..so that when the user click on the email address or the web url it will take the user to the correct destination. The values come from a database.
Code:<% if len(rs.Fields.Item("txtEmail").Value) > 0 Then %> <tr> <td><p class="text">e-mail : </p></td> <td width="344"><p class="text2"><%= rs.Fields.Item("txtEmail").Value %></p></td> </tr> <% End If %>
Code:<% if len(rs.Fields.Item("txtWeb").Value) > 0 Then %> <tr> <td><p class="text">Web URL : </p></td> <td width="344"><p class="text2"><%= rs.Fields.Item("txtWeb").Value %></p></td> </tr> <% End If %>
Thank you.



%= rs.Fields.Item("txtEmail") %>"><%= rs.Fields.Item("txtEmail") %></a>
Bookmarks