There is a CompositeControl on a page I'm working on. One of the textboxes in this CompositeControl has by default some gray "watermark" test that says "year" which is a prompt for the user to enter a value for number of years.
When I click a the save button (a Button control created pro grammatically) on my page, the value the user enters is cleared out. I'm trying to figure out why.
It happens before the click event for the Button even fires - at least, the button includes an event handler like the following: SaveButton.Click += new EventHandler(SaveButtonClick); When I debug, the value in the textbox is cleared before my break point
in the SaveButtonClick method is reached.
I'm using Web Forms. The save button is on master page. I've looked in the master page code and also looked in the jQuery behind the pages, but haven't found anything that would cause the textbox to clear out.
I'm looking for troubleshooting advice. ...
Go to the complete details ...