Click here to Skip to main content
15,892,059 members
Articles / Web Development / ASP.NET
Tip/Trick

Access ASP.NET Server Controls in JavaScript Files

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
5 Nov 2013CPOL 12.6K   4  
How to acccess ASP.NET server controls in JavaScript files

Introduction

This tip describes the way to access the ASP.NET server controls in JavaScript files. This facilitates to move the JavaScript code to a separate JS file.

Using the Code

Follow the steps given below:

  1. Create an aspx file and create an object that will be used to contain all the control ids that you need to access from JavaScript file. Adjust the path and name for the jquery min.js accordingly:
    JavaScript
    <script src="../js/jquery.ui-1.8.6.min.js" 
    type="text/javascript"></script>
    //Initialize variable to be used in the RecurrentAppointment.js
            var RecurrentRelatedIDs = {};
  2. Initialize the control in $(document.ready) / $(function) so this control can be accessed from js file and call the js file function:
    JavaScript
    $(function () {
                //Initialiaze the controls for RecurrentAppointment.js
                RecurrentRelatedIDs = {
                    txtAppointmentDateID: '<%= txtAppointmentDate.ClientID%>'
                  , txtStartsOnDateID: '<%= txtStartsOnDate.ClientID%>'  
    };
    FunctionsToRunAtDocumentReady();
    }); 
  3. Create the js file and add 'function FunctionsToRunAtDocumentReady()' in the js file. This function is called from main page after the control id object is initialized. The js file can access the server controls via the object created earlier:
    JavaScript
    function FunctionsToRunAtDocumentReady(){
    RecurrentRelatedIDs.txtAppointmentDateID = 1; 
    }

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Freelancer
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --