Hello All
I have a web grid in my web form. I would like to set the title of that grid at the time of Pageload. I have five LinkButtons in my my previous page. And the title of Grid depends on the link button which is clicked in last page.
Any suggestions will be highly appreciated.
Thanks
Gaurav
Hello,
If you are using asp:LinkButton controls with postback, you can store the Title in Session, e.g. Session["Title"] = "some title" and use that in grid later.
I am saving my title in Session. But my problem is that which property or attribute of webgrid to use for displaying title on the top of the grid.