pradeep bommakanti

Greenhorn
+ Follow
since Mar 29, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by pradeep bommakanti

Try with this :

out.println("<meta HTTP-EQUIV='REFRESH' content='1; url=http://localhost:8080/examples/jsp/HMC/HTML/downloaded.htm'>");

Instead of Double Quotes use single quotes within the double quotes, as given above.
Hope this works...
-Pradeep
18 years ago
JSP
lets take an example:
<form name="frm1">
<input type="text" name="login">
....
</form>
U can get this text filed value by:
document.frm1.login.value;

PS: frm1 -> your form name,
login -> text field name
value -> corresponding form element value
18 years ago
Hello Abhinay,
After I set the classpath [tomcat\lib\common\servlet.jar] the Servlet file compiled successfylly.
Thanks
-Pradeep
18 years ago
Hi Friends,
I am new to work with Servlets. I wrote a small Servlet program to print "HelloWorld" but its giving compilation errors like:

package javax.servlet does not exist
package javax.servlet.http does not exist ...

I am using jdk1.3.1_08. can anyone tell me the reason[s].
Thanks in advance

- Pradeep

here is the code:

18 years ago