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:
- 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:
<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 = {};
- Initialize the control in
$(document.ready)
/ $(function)
so this control can be accessed from js file and call the js file function:
$(function () {
RecurrentRelatedIDs = {
txtAppointmentDateID: '<%= txtAppointmentDate.ClientID%>'
, txtStartsOnDateID: '<%= txtStartsOnDate.ClientID%>'
};
FunctionsToRunAtDocumentReady();
});
- 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:
function FunctionsToRunAtDocumentReady(){
RecurrentRelatedIDs.txtAppointmentDateID = 1;
}