Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<asp:GridView ID="Gv2EnrolledDueDetails" runat="server" AllowPaging="True" OnRowDataBound="OnRowDataBound"
                    AutoGenerateColumns="False" DataKeyNames="Appln_no" Width="800px" OnPageIndexChanging="Gv2EnrolledDueDetails_SelectedIndexChanged">
                    <Columns>
<asp:BoundField DataField="Can_REGID" HeaderText="Can_REGID" Visible="False"></asp:BoundField>
<asp:BoundField DataField="Enrol_Status_Id" HeaderText="Enrol_Status_Id" Visible="False"></asp:BoundField>
<asp:BoundField DataField="Candidate_id" HeaderText="Candidate REGID" Visible="False"></asp:BoundField>
<asp:BoundField DataField="Appln_no" HeaderText="# Application" SortExpression="Appln_no"></asp:BoundField>
<asp:BoundField DataField="Can_Name" HeaderText="Candidate Name" SortExpression="Can_Name"></asp:BoundField>
<asp:BoundField DataField="CourseName" HeaderText="Course" SortExpression="CourseName" ></asp:BoundField>
<asp:BoundField DataField="StartDate" HeaderText="Start Date" SortExpression="StartDate" DataFormatString="{0:dd-MMM-yyyy}" ></asp:BoundField>
<asp:BoundField DataField="EndDate" HeaderText="End Date" SortExpression="EndDate" DataFormatString="{0:dd-MMM-yyyy}" ></asp:BoundField>
<asp:HyperLinkField DataNavigateUrlFields="Appln_no" DataNavigateUrlFormatString="TRS_Enrollement-Instalment.aspx?Appln_no={0}" Text="Payment" HeaderText="Pay"></asp:HyperLinkField>
Posted

1 solution

Refer - Display GridView Row details on Cell MouseOver using jQuery ToolTip Plugin in ASP.Net[^].

If you want to go to the database, then you have to do a jQuery Ajax call to a Web Method and return data from that.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900