Click here to Skip to main content
15,892,005 members

Comments by dontumindit (Top 27 by date)

dontumindit 22-Aug-11 14:11pm View    
hmmmmmmmm try EnableViewState, set it to true

if not that, can u explain a bit more, what u trying to do, some code snip
dontumindit 22-Aug-11 11:25am View    
hmmmmmmm then its fine, actually there are lots of ways to solve one problem, both ways its correct, best of luck for assignment. i think u r going in right direction.
dontumindit 21-Aug-11 15:54pm View    
this AddBook and RemoveBook is for adding the new books to library and removing the old books from library. With Passage of time some books get out of library bcz they r of no use etc.

Ur question reminds me one of my own assignment, wel best of luck
dontumindit 21-Aug-11 15:51pm View    
welcome :)
dontumindit 21-Aug-11 3:27am View    
Deleted
u can get the complete row instance by e.Rows

GridViewRow gr = e.Row;

each row has collection of cells

so to get instance of each cell u can u use e.Rows.Cells[index]

where index = column u want to access

for text of a cell

string str = e.Row.Cells[0].Text;

or

e.Row.Cells[0].Text = "its me";