I have a user control with a "More Info" link. When clicking that link, I want a div to appear which gives the user more information.
Where do I put the javascript? It doesn't appear to work when placing at the top of my user control. How do you handle javascript and jquery when you are using a user control? I have jquery included in my master page. My regular asp.net pages have javascript and those work.
EDIT: It appears that the way to do client side coding in a user control is to do output a script via server side, similar to how the asp.net server controls work. What is disappointing is that jquery is so awesome but all the examples are strictly embedded on the html/aspx page. Is there a resource out there for jquery with asp.net that I haven't found yet?