forum

Home / DeveloperSection / Forums / Fire OnSelectedIndexChanged of GridView in asp.net

Fire OnSelectedIndexChanged of GridView in asp.net

Anonymous User 2046 14-Jan-2015

I have 2 grids, grid1 and grid2.

grid2 will be filled based on which row is clicked in grid1. I have done it by binding OnSelectedIndexChanged of grid1.

But at page load the grid2 will be empty as no row selection is made.
So I was planning of firing the row selection of grid1 using c# code so that both grids will be having data at page load.

I have started coding like.

            grid1.DataSource = versions.DefaultView;
            grid1.SelectedIndex = 0;
            grid1.DataBind();

But the event is not firing. Can anyone help me in solving this issue?

 


Updated on 14-Jan-2015
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By