This is a migrated thread and some comments may be shown as answers.

[Solved] Rad Grid Refresh on page postback

1 Answer 336 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rahul
Top achievements
Rank 1
Rahul asked on 22 Sep 2009, 09:09 AM
want to refresh the radgrid on page postback ? how to reresh the radgrid

its urgnettttttt

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 22 Sep 2009, 09:27 AM
Hello Rahul,

You can call the rebind method inorder to refresh your grid on postbacks as shown below:
c#:
  protected void Page_Load(object sender, EventArgs e) 
    { 
        if (IsPostBack) 
        { 
            RadGrid1.Rebind(); 
        } 
    } 

Thanks
Princy.
Tags
Grid
Asked by
Rahul
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or