I would like to know if I can use javascript in .aspx? Is there any limitations in using javascript on .aspx?<BR><BR>Cheers!<BR><BR>Mazza
Are you talking about client-side JavaScript? Sure, just emit it like you would regular HTML/client-side script. If you are talking about using JScript on the server-side, yes, you can use JScript.NET as the programming language on the server-side. I've not tried it, but I would assume all you'd need to do is:<BR><BR><script runat="server" language="jscript"><BR> ...<BR></script><BR><BR>Happy Programming!Thanks Scot!<BR><BR>Mazza 

