I have a form which Adds a range of records to a database and on completion, displays the results and is supposed to Set everything back to it's default values. I hd it working good with Javascript, but now I have decided to use AJAX on the submit to display a Please wait message until submission is complete. After that, for whatever reason, my SetDeaults routine no longer defaults the Radio button to what I need it to be.
Codebehind routine being called
/// <summary>
/// Reset everything back to default after form is submitted
/// </summary>
public void SetBackDefaults()
{
Log.WriteLine("SetBackDefaults: SETTING BACK DEFAULTS", Log.DEBUG_LEVEL.TERSE);
// Reset TextBoxees in Add
AddUsernameTextBox.Text = "";
AddPasswordTextBox.Text = "";
AddSmallJPGTextBox.Text = "";
AddLargeJPGTextBox.Text = "";
...
Go to the complete details ...