Hi
i have a grid with 3 options i.e. edit ,delete and view
how to write the code for 3 commands in grid view
.is it possible to write with in row-command for this
gridview-rowcommand()\
(
if (
e.commandname==edit)
{}
else if(e.commandname==view)
{
}
else if(e.commandname==delete)
{
}
}
is it correct or wrong,whether i should generate row deleting handler for deletion
tell me
vijaya