Hill all.
how to set textbox value ?
this is my code :
<asp:GridView ID="DataGridview" runat="server">
<EditItemTemplate>
<asp:TextBox ID="TextboxEdit" Autopostback="True" runat="server" />
</EditItemTemplate>
</asp:Gridview>
Sub Getdata()
dim value as string = "SAMSUNG"
TextboxtEdit.text = value
end sub
I got error message :
object reference not found instance object
How to set my TextboxtEdit ?
Go to the complete details ...