How to get the value of an input textbox to my VB variable? See code below
My input from textbox variable is TEXTBOX_IUSERID
my VB code is as follows:
Public Iuserid as string
Public Textbox_Iuserid as string
Iuserid = Textbox_Iuserid.trim
I get Error: OBJECT REFERENCE NOT SET TO AN INSTANCE OF AN OBJECT.
What am I doing incorrect?
Go to the complete details ...