I'm currently retrieving data from my database and pulling it into a grid-view. The information includes student number, first name, surname and email. I want the user to have the option to click individual student numbers so that it takes the user to
the student's academic record. I have no idea how to go about or code this. Any ideas? Heres the code for the gridview - if it's relevant
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px" CellPadding="2" DataKeyNames="UserID,StudentModulesID" DataSourceID="SqlDataSource1" Height="100px" Width="483px" CellSpacing="1" style="text-align: center&qu ...
Go to the complete details ...