Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 3rd, 2008, 02:21 AM
Authorized User
 
Join Date: Apr 2007
Posts: 61
Thanks: 0
Thanked 0 Times in 0 Posts
Default Javascript validation not working in content page

Hello Friends,

This is my validation code given below and working great in content page if i put this code in the content page but whenever i put this code in jsfile and give the path of the jsfile in the master page then the validations don't fire .......plz suggest me the way

<script language="javascript">
    function validate1()
        {
            if(document.getElementById("<%=txtOldPassword.Clie ntID%>").value=="")
                {
                    window.alert("Please Enter Old Password");
                    document.getElementById("<%=txtOldPassword.ClientI D%>").focus();
                    return false;
                }
            else if(document.getElementById("<%=txtNewPassword.Clie ntID%>").value=="")
                {
                    window.alert("Please Enter Your New Password");
                    document.getElementById("<%=txtNewPassword.ClientI D%>").focus();
                    return false;
                }
            else if(document.getElementById("<%=txtNewPassword1.Cli entID%>").value=="")
                {
                    window.alert("Please Retype Your Password");
                    document.getElementById("<%=txtNewPassword1.Client ID%>").focus();
                    return false;
                }
        }
</script>






Similar Threads
Thread Thread Starter Forum Replies Last Post
Master Page Method: Code-Behind for Content Page kwilliams ASP.NET 2.0 Professional 3 June 2nd, 2008 12:57 PM
Master Page and Content Page with Java script Harjinder ASP.NET 2.0 Professional 1 February 1st, 2008 10:31 AM
javascript in content page. angshujit ASP.NET 2.0 Basics 1 January 4th, 2007 03:25 PM
Dynamic content in Netscape not working. Help! nyc_courtney Javascript 2 August 25th, 2004 04:54 PM
Validation not working Ajay Jain General .NET 1 February 26th, 2004 03:07 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.