Click here to Skip to main content
15,883,822 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hello .net and jquery experts . i need one help
Sir i am using three tier architecture. and one master page .
and come contents pages .
my project is working but my problem is that once i create datepicker on the master page so it is not working .
if i create a simple page a part of three tier architecture and write the same codes on the source code so it works but it does not work on three tier architecture.
why is it happening please reply
Posted

1 solution

99% of problems with master pages are down to three things 1) you don't appreciate that javascript runs on the *client*, it works of the html your server code renders so you need to view the source of the page to work out why things aren't working, what is in your aspx markup files is irrelevant 2) the master page executes in the context of the *child* page, not its location in the solution tree so any relative paths in the markeup won't work 3) .net controls the IDs of your elements so they aren't what you think they are going to be (see point 1).
 
Share this answer
 
v2

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