Click to See Complete Forum and Search --> : something about jsp


piertiong
04-13-2003, 07:49 AM
may i know the code to refresh a page using jsp?

khalidali63
04-13-2003, 08:03 AM
you can always reload page by using the following code

request.sendRedirect("samePage.jsp");
return;


Cheers

Khalid

piertiong
04-13-2003, 09:54 AM
Originally posted by khalidali63
you can always reload page by using the following code

request.sendRedirect("samePage.jsp");
return;


Cheers

Khalid

hey thanks! i appreciate it. :)