JSP ( Runtime access of filenames of images in JSP )

2000-11-10 Thread Sunil Roy

Dear JSP gurus,

Pl. solve my following problem:

Pl. see the following code for displaying images "1.jpg" , "2.jpg" , "3.jpg"
, etc. in

subsequent td in the same row:

 %@ page import = "ImageServlet" %

 html
 body

 %! int imgNo[];
 int col;
 %

 !-- staticImgNo is a static int array in the servlet ImageServlet  --

 % imgNo = ImageServlet.staticImgNo ; %

 tabletr
 %
for ( col = 0 ; col  imgNo.length ; col++ )
{
 %

  td

 !-- I wish to display  the various images with the for loop.
  But I know that the following statement in invalid since the JSP tag

   can't be nested inside an html tag. But I wish to know the
alternative

  method of displaying the various images
 --

  img src = %= "" + intImg[col] + ".jpg" %  

  /td

 %
}
 %

 /table
 /body
 /html

Thanks in anticipation
Eagerly waiting for a reply.
Sunil K. Roy

===
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



Re: JSP ( Runtime access of filenames of images in JSP )

2000-11-10 Thread Luis Javier Beltran

that JSP tag inside the HTML tag is totally valid


- Original Message -
From: "Sunil Roy" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 02, 2000 2:10 PM
Subject: JSP ( Runtime access of filenames of images in JSP )


Dear JSP gurus,

Pl. solve my following problem:

Pl. see the following code for displaying images "1.jpg" , "2.jpg" , "3.jpg"
, etc. in

subsequent td in the same row:

 %@ page import = "ImageServlet" %

 html
 body

 %! int imgNo[];
 int col;
 %

 !-- staticImgNo is a static int array in the servlet ImageServlet  --

 % imgNo = ImageServlet.staticImgNo ; %

 tabletr
 %
for ( col = 0 ; col  imgNo.length ; col++ )
{
 %

  td

 !-- I wish to display  the various images with the for loop.
  But I know that the following statement in invalid since the JSP tag

   can't be nested inside an html tag. But I wish to know the
alternative

  method of displaying the various images
 --

  img src = %= "" + intImg[col] + ".jpg" %  

  /td

 %
}
 %

 /table
 /body
 /html

Thanks in anticipation
Eagerly waiting for a reply.
Sunil K. Roy

===
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

===
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