View Single Post
  #7 (permalink)  
Old 11-10-2008, 04:33 PM
wolve634's Avatar
wolve634 wolve634 is offline
Member
 
Join Date: Oct 2008
Posts: 13
Rep Power: 0
wolve634 is on a distinguished road
Default
you can use scriptlet this way:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Scriptlet Demo</TITLE>
</HEAD>
<BODY>
<%@ page import="package.myclass" %>
<% myclass m=new myclass();
out.system.out.println(m.sayHello());
%>
</BODY>
</HTML>
Reply With Quote