form validation problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear all,

We have a problem with a form that was working perfectly well last week. As
far as we are aware nothing has changed.

If you can look at the link below (please do NOT complete an application
though!), complete the required fields (enter bogus info by all means) and
try to submit the page - nothing happens...

https://www.creditconnectuk.com/apply/stage1.aspx

We're completely baffled by this and need it sorting urgently. Any advice
would be fantastic.

Cheers, James
 
We thought that too Peter, but the event is simple:

Private Sub btnContinue1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnContinue1.Click

If Page.IsValid = False Then
Return
Else
'do some stuff (basically adding to session variables)
 
We thought that too Peter, but the event is simple:

Private Sub btnContinue1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnContinue1.Click

If Page.IsValid = False Then
Return
Else
'do some stuff (basically adding to session variables)
Response.Redirect("stage2.aspx")
End If

End Sub


I think it is to do with some javascript error that wont fire the event, but
am only guessing.
 
Perhaps it has something to do with validation - try debugging it -> Are you
sure the redirect is ok?
 
Hi Peter,

We seem to have sorted it. The .js files in the aspnet_client folder must
have been corrupted somehow, as when we deleted then re-uploaded them
everything worked fine.

Has anyone experienced this before?
 
Back
Top