i m developing website in asp.net n page name is 1.aspx i want to show records in table form but my requirement is that it should be hyperlink username when ever visitor clicks on that.next page will come n the username passed to another page
<td><%#Container.DataItem(“user_name”)%> </td>
I would store the UN and PW in a Session object, and pass it to the next page. Where you would grab it from Session and add it to the table like you showed above.
I would use a GridView control with a Hyperlink column type. Then link it with a querystring
“nextpage.aspx?id=1” or “nextpage.aspx?username=” + Server.UrlEncode(“username”)
Its better to use grid or table to show records plz provide coplete code for hyperlink <a href of asp.net m confused
Gridview generates a table. Google asp.net gridview and you will find all the code you need