Un edtitable Column in datagrid using ASP.Net
Hi all,
Can, give me some idea to Build the customise datagrid control. My code is not working properly.
My code is given below:----
Private Sub DataGrid1_EditCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs ) Handles DataGrid1.EditCommand
Try
Me.DataGrid1.EditItemIndex = e.Item.ItemIndex
Me.DataGrid1.DataSource = cls.FillDataSet
Me.DataGrid1.DataBind()
Catch ex As Exception
Response.Write(ex.Message)
Finally
CType(e.Item.Cells(0).Controls(0), TextBox).Visible = False
End Try
End Sub
I have three Field in Product_Id,Product_Name,Price
I Make the column uneditable Which hold the Product_Id information.
|