| Author: Satya 07 Sep 2008 | Member Level: Gold | Rating: Points: 2 |
You are passing the parameters from this page to cMain.aspx. The parameters are LeftCtrl, ctrl and the CompanyId.
For more information look: http://aspnet.4guysfromrolla.com/articles/020205-1.aspx http://www.codeproject.com/KB/aspnet/IFrameParams.aspx
|
| Author: Karthikeyan S 08 Sep 2008 | Member Level: Gold | Rating: Points: 3 |
Hi,
I hope you are using Hyperlink field in gridview.
Inside gridview for the Hyperlink field we can set the list of databound fields, which is used to pass those values as a query string to the target url of this Hyperlink field.
By passing dynamic values of the row to another page through url, you are sending some information to another page using query stirng.
Ex: <asp:HyperLinkField DataNavigateUrlFields="CategoryID" DataNavigateUrlFormatString="SmallWindow.aspx?id={0}" DataTextField="CategoryName" NavigateUrl="SmallWindow.aspx" />
in above example in the place of {0}, dynamically CategoryID value of current row will be passed in the url.
|