Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am using asp.net,C#,VS 2005

i have the following code in master page
XML
<link rel="stylesheet" href="calendar.css" type="text/css"  />
 <script src="weeklycalendar.js" language="javascript" type="text/javascript"> </script>
        <script language="javascript" type="text/javascript">
        buildWeeklyCalendar(0);
            </script>


and in content page i have a HTML button...

when this button is clicked i want to dispaly the calender control by calling the above javascript function .. hoo do this?

and the HTMl button is there in another aspx page which is a child master page..

Any help plz......

regards
karan
Posted

1 solution

place the following line in your base master page

<script src="weeklycalendar.js" language="javascript" type="text/javascript"> </script>


and in the child master page, write the following

XML
<script language="javascript" type="text/javascript">
        buildWeeklyCalendar(0);
            </script>


please let me know if you find any problem..
 
Share this answer
 
Comments
karan joshua 18-May-11 8:44am    
i want to call inside the asp:content control in child master page....
senguptaamlan 18-May-11 8:47am    
in the onclick event of the HTML button control call the javascript function, as you have already referenced the .js file in the parent master page...the method should be available.
karan joshua 18-May-11 9:11am    
calender is working but it is not displayin the date in text box.....
senguptaamlan 18-May-11 9:16am    
where is the TextBox control in your question???
karan joshua 18-May-11 10:20am    
<input id="Button2" önclick="w_displayDatePicker('ctl00_MainContentPlaceHolder_555')" style="font-weight: bolder; color: olive" type="button" value="Calender" />

Thank u very much now it is working......

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900