473,378 Members | 1,066 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

form validation problem

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
Jul 21 '05 #1
5 1274
Hi James,

It looks like something is wrong with your event handler

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"James" <Ja***@discussions.microsoft.com> wrote in message
news:9E**********************************@microsof t.com...
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

Jul 21 '05 #2

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)

"Peter Jausovec" wrote:
Hi James,

It looks like something is wrong with your event handler

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"James" <Ja***@discussions.microsoft.com> wrote in message
news:9E**********************************@microsof t.com...
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


Jul 21 '05 #3

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.

"Peter Jausovec" wrote:
Hi James,

It looks like something is wrong with your event handler

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"James" <Ja***@discussions.microsoft.com> wrote in message
news:9E**********************************@microsof t.com...
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


Jul 21 '05 #4
Perhaps it has something to do with validation - try debugging it -> Are you
sure the redirect is ok?

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"James" <Ja***@discussions.microsoft.com> wrote in message
news:60**********************************@microsof t.com...

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.

"Peter Jausovec" wrote:
Hi James,

It looks like something is wrong with your event handler

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"James" <Ja***@discussions.microsoft.com> wrote in message
news:9E**********************************@microsof t.com...
> 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


Jul 21 '05 #5

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?

"Peter Jausovec" wrote:
Perhaps it has something to do with validation - try debugging it -> Are you
sure the redirect is ok?

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"James" <Ja***@discussions.microsoft.com> wrote in message
news:60**********************************@microsof t.com...

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.

"Peter Jausovec" wrote:
Hi James,

It looks like something is wrong with your event handler

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
"James" <Ja***@discussions.microsoft.com> wrote in message
news:9E**********************************@microsof t.com...
> 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


Jul 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Stefan Richter | last post by:
Hi, after coding for days on stupid form validations - Like: strings (min / max length), numbers(min / max value), money(min / max value), postcodes(min / max value), telefon numbers, email...
4
by: bnp | last post by:
Hi All, I am quite new the JavaScript. Basically I am a C++ programmer, but now I am working on JavaScript since last 5 days. I have a problem regarding the form validation. I have created a...
6
by: Darren | last post by:
I have a form that has 10 fields on it. I have made all of them "Required". I also am using vb if statements to decide whether or not each field should be on the page. I am using the vb to...
9
by: julie.siebel | last post by:
Hello all! As embarrassing as it is to admit this, I've been designing db driven websites using javascript and vbscript for about 6-7 years now, and I am *horrible* at form validation. To be...
7
by: h7qvnk7q001 | last post by:
I'm trying to implement a simple server-side form validation (No Javascript). If the user submits a form with errors, I want to redisplay the same form with the errors highlighted. Once the form...
27
by: Chris | last post by:
Hi, I have a form for uploading documents and inserting the data into a mysql db. I would like to validate the form. I have tried a couple of Javascript form validation functions, but it...
11
by: Rik | last post by:
Hello guys, now that I'm that I'm working on my first major 'open' forms (with uncontrolled users I mean, not a secure backend-interface), I'd like to add a lot of possibilities to check wether...
4
by: Greg Scharlemann | last post by:
I'm trying to setup a dyamic dropdown list that displays a number of text fields based on the selected number in the dropdown. The problem I am running into is capturing the data already entered...
10
by: gweasel | last post by:
What is the best way to apply a Validation Rule - or rather, where is the best place to put it? Is there an advantage to putting it on the field in the table vs setting the validation rule on the...
5
by: lucyh3h | last post by:
Hi, I am trying to use XMLHttpRequest to do server side validation. I have several fields on a form and a submit button. The submit button has an event assocated with it when clicked. The...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.