B
Bob Trabucco
Hello all,
I have a Datagrid on a page. 1 column is a template column with a checkbox
(unbound). The rest of the columns are databound that are added
programatically.
If in the Page_Load I do:
If IsPostBack Then
else
end if
BIND DATA HERE
Then the grid displays correctly every time but the checkboxes are always
cleared so I can never check them.
If I do this...
If IsPostBack Then
else
BIND DATA HERE
end if
The grid posts back the first time but the second pass the grid is empty!
Any clues to what I am doing wrong?
Thanks in advance,
Bob
I have a Datagrid on a page. 1 column is a template column with a checkbox
(unbound). The rest of the columns are databound that are added
programatically.
If in the Page_Load I do:
If IsPostBack Then
else
end if
BIND DATA HERE
Then the grid displays correctly every time but the checkboxes are always
cleared so I can never check them.
If I do this...
If IsPostBack Then
else
BIND DATA HERE
end if
The grid posts back the first time but the second pass the grid is empty!
Any clues to what I am doing wrong?
Thanks in advance,
Bob