Click here to Skip to main content
15,892,809 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am Madhuri,i am using Gridview control in my project. i want to pass the gridview value(Eg:JobId) to another page in 3-tier architecture. How I Can write a code for that.Plz Help me
Posted

1 solution

Try to find out in this way.

XML
<asp:TemplateField HeaderText="Details" HeaderStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:HyperLink ID="hyp_Isfresher" NavigateUrl='<%#"~/Admin/OrderDetails.aspx?Order_Id="+Eval("JobId") %>'
Text="View" runat="server"></asp:HyperLink>
</ItemTemplate>
 </asp:TemplateField>
 
Share this answer
 
Comments
Mahendra.p25 16-May-11 6:29am    
What is The Problem?if you want to use that in code behind then you can also Create a session and use that....

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