Hi, I have a javascript fucntion that only runs if the page is valid, so in the function I have

Code:
 if (Page_IsValid == true) {

 }
When debugging locally this is fine, but when on the server I get an undefined error for page_IsValid.

I did some research and in framework 1 a jscript file was included in the aspnet_client folder that exposed this object, appearently with version 2 and above this is now all wrapped into the framework.

As I am using 3.5 it should be working, are there any IIS settings I need to make.

thanks in advance