well here is one of the source codes. I  tried many simple ones and if i
dont involve and request.getParameter in my code then it definetly works.
otherwise i think it depends on my servers mood.

thanks and please help.




<%@ page language="java" %>
<HTML>
<HEAD>
<TITLE>

</TITLE>
</HEAD>

<BODY BGCOLOR="#FFFFFF">
<P>
<%

try
{
int j=Integer.ParseInt(request.getParameter("numtimes");

for(int i=0;i<j;i++)

   out.println("helloworld");
}
catch(NullPointerException e)
{
out.println(e);
}
%>

</P>
</BODY>
</HTML>

________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to