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>

You could pass the username in the querystring to the next page:

<td><a href="nextpage.html?user=<%#Container.DataItem('user_name')"%>><%#Container.DataItem('user_name')%></a></td>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.