Why this error message?

P

pvong

VB.NET / ASP.NET

I have a simple test. One simple Formview connected to a datasource. I
have Button1 outside of the Formview. The Formview starts in ReadOnlyMode.
All I want to do is on the button click, change the formview to Insert mode
and then put the current date in the date textbox. The date textbox ID is
DateTextBox and I've double check that to make sure it's right. Here's my
simple code.

Protected Sub Button1_Click1(ByVal sender As Object, ByVal e As
System.EventArgs)

FormView1.ChangeMode(FormViewMode.Insert)

Dim datetb As TextBox = FormView1.FindControl("DateTextBox")

datetb.Text = Now.Date.ToShortDateString()

End Sub


This is the error message I'm getting.

Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set
to an instance of an object.

Source Error:

Line 6: FormView1.ChangeMode(FormViewMode.Insert)
Line 7: Dim datetb As TextBox =
FormView1.FindControl("DateTextBox")
Line 8: datetb.Text = Now.Date.ToShortDateString()
Line 9: End Sub
Line 10: </script>


Thanks in advance!
Phil
 
G

Guest

VB.NET / ASP.NET

I have a simple test. One simple Formview connected to a datasource. I
have Button1 outside of the Formview. The Formview starts in ReadOnlyMode.
All I want to do is on the button click, change the formview to Insert mode
and then put the current date in the date textbox. The date textbox ID is
DateTextBox and I've double check that to make sure it's right. Here's my
simple code.

Protected Sub Button1_Click1(ByVal sender As Object, ByVal e As
System.EventArgs)

FormView1.ChangeMode(FormViewMode.Insert)

Dim datetb As TextBox = FormView1.FindControl("DateTextBox")

datetb.Text = Now.Date.ToShortDateString()

End Sub

This is the error message I'm getting.

Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set
to an instance of an object.

Source Error:

Line 6: FormView1.ChangeMode(FormViewMode.Insert)
Line 7: Dim datetb As TextBox =
FormView1.FindControl("DateTextBox")
Line 8: datetb.Text = Now.Date.ToShortDateString()
Line 9: End Sub
Line 10: </script>

Thanks in advance!
Phil

Hi Phil

Are there any entry in the datasource?
 
P

pvong

Yes, there are entries in the Datasource. If I manually put the date in, it
works perfectly. I just want when the user clicks this button for the
formview to auto switch to Insert mode and auto put in today's date for them
in the datetb.
Thanks!
Phil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top