Hi,
i have grouped the rows based on category like below on gdvRowDatabound event . but after postback it does not maintain the state. secondly i have to bind the textbox in front of comments field instead of radio buttons can any body guide me in both issues.
After postback iam getting the below screen
Here is the rowdatabound code
protected void gdvRowDatabound(object sender, GridViewRowEventArgs e)
{
// If the current row is a DataRow (and not a Header or Footer row), then do stuff.
if (e.Row.RowType == DataControlRowType.DataRow)
{
DataRowView drv = (DataRowView)e.Row.DataItem;
if (tmpCategoryName != drv["Cat ...
Go to the complete details ...