Posted on: 10/6/2014 3:27:05 AM | Views : 361

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 ...