Code 1protected void UltraWebGrid1_InitializeRow(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e) 2 { 3 if (e.Row.Band.Index == 0) 4 { 5 string str = string.Empty; 6 str = "<input id='chk" + e.Row.Index + "' type='checkbox' name='chkName" + e.Row.Index + " ' />"; 7 e.Row.Cells[0].Text = str; 8 } 910 }11