Results 1 to 4 of 4
Thread: Jsp n html simple program
- 01-12-2011, 09:29 AM #1
Member
- Join Date
- Jan 2011
- Posts
- 1
- Rep Power
- 0
Jsp n html simple program
Hello people,
I have configured TOMCAT6.0. I followed the following steps to configure:
1. Opened catalina n gave the path. JAVA_HOME="JDK1.6_PATH"
2. Opened CMD gave the tomcat path... STARTED THE SERVER.Then STOPPED IT
3. Installed Netbeans6.1, configured tomcat server in it.
Later i typed a simple program with JSP N HTML:
The following is the HTML code:
<html>
<head>
<title>HELLO WORLD123</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<form action="index.jsp">
firstname<input type="text" name="firstname" value="username">
password<input type="password" name="password" value="password">
<input type="submit" value="submit">
</form>
</body>
</html>
JSP code:
<html>
<head>
<title>123</title>
</head>
<body>
<h2>Hello World!</h2>
<%
String firstname=request.getParameter("firstname");
String lastname=request.getParameter("lastname");
%>
<%=firstname%>
<%=lastname%>
<form action="newhtml.html" method="post">
<input type="submit" value="return">
</form>
</body>
</html>
When i save n run this program the browser is giving a diff output. It is showing the out of index.jsp. The output looks like the following:
Hello World!
Please help me solve this issue. What should i do now.
- 01-12-2011, 04:13 PM #2
Moderator
- Join Date
- Jul 2010
- Location
- California
- Posts
- 1,605
- Rep Power
- 5
Cross posted at JSP N HTML SIMPLE PROGRAM - Java Programming Forums. See Crossposting Problems for why this message is here
- 01-29-2011, 07:28 PM #3
Member
- Join Date
- Jan 2011
- Posts
- 7
- Rep Power
- 0
<mod edit: deleted hijack post>
Last edited by Fubarable; 01-29-2011 at 07:47 PM. Reason: <mod edit: deleted hijack post>
-
saurabh, please don't hijack another's thread. Instead start a new thread with your question. I'm deleting your question in a bit.
Similar Threads
-
Problem with very simple program
By iratus in forum New To JavaReplies: 13Last Post: 11-07-2010, 04:43 PM -
Simple program help
By jtyler in forum New To JavaReplies: 3Last Post: 09-20-2010, 07:43 AM -
simple program
By blastoff in forum New To JavaReplies: 5Last Post: 04-14-2010, 11:25 PM -
simple chat program
By munishmhr in forum NetworkingReplies: 2Last Post: 03-25-2009, 04:00 PM -
Simple Program
By TheRocket in forum Advanced JavaReplies: 15Last Post: 12-30-2008, 02:35 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks