Click to See Complete Forum and Search --> : Javascript Appletts in ASP.Net 2.0


dasharp
06-19-2006, 01:14 PM
I am trying to convert a website from classic ASP to ASP.Net 2.0. I can get everything working except for a javascript applet on the master page that gives the impression of the title being reflected in a rippling pool. I get no errors when the page displays, but the space the applet should display in is blank. :mad:

Is there some trick to making Javascript applets work in the new ASP.Net 2.0 :confused:

The classic ASP page can be seen at http://www.senderalakeestates.org/

I feel like this should be a simple thing, but it is driving me nuts. Any suggestions?

Thanks.

TheBearMay
06-19-2006, 03:32 PM
It's a JAVA applet which means it loads into the client browser space and runs. Thus no direct interaction with ASP or ASP.Net. The way the ASP page is coded says that AnLake.class file is in the same directory as the ASP Page though, so you may need to give the class file a fully qualified path to AnLake.class.

dasharp
06-25-2006, 06:22 PM
Thanks, I'll try that. If I still have problems, I'll post a link to the ASP 2.0 page.