How to prevent page from scrolling when asp validators fails witha a pop up window

16 Views Asked by At

My page has ASP validations. When validation fails and error pop up is displayed, the page is scrolled down and the div container moves down.

How can I prevent this kind of behavior?

1

There are 1 best solutions below

0
gene On

I found a simple solution here: Solution

This javascript code will do the trick:

 window.scrollTo = function (x, y) {
     return true;
 }