vote up 0 vote down star

Hi, everybody; I have this problem in asp.net, I have a page where I insert and modify data, before saving I make a validation if it passes I save the data but if not I raise an exception and show it, the function goes like this;

protected void btnSave_Click(object sender, EventArgs e)
{
try
{
...
if(ValidData())
  //Save
  ...
else
  throw new Exception("Invalid data");
}
catch(Exception ex)
{
  // Javascript alert
  JSLiteral.Text = Utilities.JSAlert(ex.Message);
}
}

The problem is that after I raise the exception and fix the data in the page I click again the save button and it saves but before it shows me again the exception message and its annoying. Even when the data is saved I click again and it shows the message from the exception again.

Do you know the answer for this issue?

flag

73% accept rate
What is JSLiteral? – Josh Dec 3 '08 at 18:33

6 Answers

vote up 1 vote down check

If JSLiteral is a server side control and it's using view state. Then you'd need to clear the state of the control, when the save is succesful.

You could disable the viewstate for the control like JSLiteral.EnableViewState =false;

link|flag
vote up 0 vote down

Is the message saved in the viewstate of the literal?

Explicitly set the literal text to nothing if the data is valid.

link|flag
vote up 1 vote down

Are you resetting the value of JSLiteral to empty after you save?

link|flag
vote up 1 vote down

Turn off viewstate for your JSLiteral control.

link|flag
vote up 0 vote down

My initial guess is that ViewState remembers the error message. Try disabling ViewState on the JSLiteral control.

link|flag
vote up 0 vote down

Throwing & catching an exception in the same function is basically pointless (exception are intended to go across call levels). Everything would probably be better if you wrote it as:

if(ValidData())
{
  //Save
}
 else
{  // Javascript alert
  JSLiteral.Text = Utilities.JSAlert(ex.Message);
}
link|flag
This is true, but to address the question you also need a JSLiteral.Text = "" in there. – nickd Dec 3 '08 at 19:00
Also when an exception comes from the database it must be catched somewhere and the problem persists. – nmiranda Dec 3 '08 at 19:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.