I have a simple .net page, with a button and a text box on it.
in the code behind I call a library function of mine that pulls some data from a database and displays it into the text box. (This piece of code works elsewhere on the site for the same piece of content)
On this one page, when the button is pressed it does a submit, and is supposed to add a date / time stamp to the text (textBox.Text = textBox.Text + DateTime.Now.ToString()).
However when the button is pressed all I get back is a blank screen. Putting break points in the code doesnt help, as they are hit when the page is first accessed, but as soon as the button is pressed, none of the break points are hit.
Any pointers as to what can cause this?
Cheers
K
in the code behind I call a library function of mine that pulls some data from a database and displays it into the text box. (This piece of code works elsewhere on the site for the same piece of content)
On this one page, when the button is pressed it does a submit, and is supposed to add a date / time stamp to the text (textBox.Text = textBox.Text + DateTime.Now.ToString()).
However when the button is pressed all I get back is a blank screen. Putting break points in the code doesnt help, as they are hit when the page is first accessed, but as soon as the button is pressed, none of the break points are hit.
Any pointers as to what can cause this?
Cheers
K