oxmilkmanxo 0 Posted February 12, 2005 im creating a scipt in notebook. how do i get it to run on a web page¿ note:this web page isnt mine and the script is for chatting so people cant flood me with an exceptionally large amount of charecters Share this post Link to post
peterh 1 Posted February 12, 2005 What kind of script? BATch script, Javascript, Java, VB, PHP, Perl? More info please! Share this post Link to post
peterh 1 Posted February 13, 2005 If its a Java script, you need to compile it to create a .class file using JAVAC compiler (use the SDK to create it). To include the file on a web page, insert the following code in the BODY of your HTML page: <APPLET CODE="myjavaprog.class" WIDTH=600 HEIGHT=100> </APPLET> which will launch your java program. More info at http://www.prefect.com/java21/ Share this post Link to post