user2390212
user2390212

Reputation: 13

Web form behaving differently when secure https

I have a web form which I have recently secured with an SSL Certificate.

Since installing the certificate, the form behaves differently - when it was unsecured http it would give an error message if any required field was not filled in eg "This field is required". However, as a secured https page it doesn't give this error message any more and it is possible to submit the form whether the fields are filled in or not.

I'm a little confused because nothing else has changed other than the form page is now secured https.

Any advice on why this might be and how I could fix it would be much appreciated. Many thanks!

Upvotes: 0

Views: 172

Answers (1)

Viji
Viji

Reputation: 2629

If you are using JavaScript for validation, Open the web page with either Google Inspect or Firefox Firebug, Check whether any of the java script is blocking or not... Its looks like some of the .js file is not loading properly.

If the validation are using ASP.NET validator, then there shouldn't be any issues.

Upvotes: 1

Related Questions