Current location: Hot Scripts Forums » Programming Languages » Everything Java » JSP <jsp:include> Question


JSP <jsp:include> Question

Reply
  #1 (permalink)  
Old 04-17-04, 11:24 AM
gpn888 gpn888 is offline
New Member
 
Join Date: Apr 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
JSP <jsp:include> Question

May I ask how can I put either one of the following:

request.getParameter("articleID")
rs.getString("articleID")

into <jsp:include>?
<jsp:include page="("articleID").jsp"/>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 04-17-04, 06:01 PM
stdunbar stdunbar is offline
Newbie Coder
 
Join Date: Jan 2004
Location: Superior, CO, USA
Posts: 67
Thanks: 0
Thanked 0 Times in 0 Posts
How about a cheap and dirty version:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 

<title>
Programming Talk - JSP include based on parameter
</title>

</head>

<body style="background:white">

<%
	String	articleID = null;
	if( (articleID = request.getParameter( "articleID" ) ) != null )
	{
%>
		<jsp:include page='<%= articleID + ".jsp" %>' />
<%
	} else {
%>
	<form method="get" action="docServer.jsp"> <!-- change this to the name of your JSP -->

	<table>
		<tr><td>File to include: <input type="text" name="articleID" size="10" /></td></tr>
		<tr><td align="center"><input type="submit" value=" Submit It " /></td></tr>
	</form>

<% } %>

</body>
</html>


Quote:
Originally Posted by gpn888
May I ask how can I put either one of the following:

request.getParameter("articleID")
rs.getString("articleID")

into <jsp:include>?
<jsp:include page="("articleID").jsp"/>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[PHP] Array question UmiSal Script Requests 1 04-05-04 02:52 PM
question and answer software jaydifox C/C++ 0 02-21-04 10:26 AM
Substitution question $_eq Arowana Perl 2 12-10-03 11:01 AM
PHP header question khadlock PHP 2 09-23-03 09:17 AM
Web Stat Question ossi44 New Members & Introductions 2 06-13-03 10:36 AM


All times are GMT -5. The time now is 02:00 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.