Converting Classic ASP page to C#/ASP.NET. I am building part of a mouseover menu (Here is Classic ASP code):
<li onmouseover="LoadSubMenu('menu6');"><a id="menu6btn" href="<%=application("URLroot")%>/OURtraining/">Training</a></li>
Notice its calling the function, LoadSubMenu and pulling the URLroot value from the application object. I can get these things in the C# page using a method. How can I call the method from the C# page? If your going to suggest a Javascript solution, please over simplify (I am weak on Javascript). Thank you in advance for your help.