ASP.NET MVC built-in validation is server-only, so ASP.NET does not have a standard variable such as Page_IsValid.
If you want to add client-side validation, you can use xVal or the jQuery validation plugin
Some articles about xVal:
JavaScript :
<script type="text/javascript">
var Page_IsValid = <%= ViewData.ModelState.IsValid %>;
</script>