J
Jim in Arizona
I get the error: Object reference not set to an instance of an object
With this code:
Dim test3 As New TextBox
test3 = CType(e.Item.FindControl("name"), TextBox)
Dim name As String = test3.Text
The specific line is:
Dim name As String = test3.Text
So, what do I need to do to fix that?
Thanks.
With this code:
Dim test3 As New TextBox
test3 = CType(e.Item.FindControl("name"), TextBox)
Dim name As String = test3.Text
The specific line is:
Dim name As String = test3.Text
So, what do I need to do to fix that?
Thanks.