help on html:select

2002-02-11 Thread Henrik Chua
hi! can anybody give me an example of how to use html:select? thanx -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

bug in struts?

2002-02-08 Thread Henrik Chua
Hi! I am having trouble configuring and using struts. I am using iPlanet 6.0 for my web server. under web applications - edit web applications. I set the URI to / only coz i want my web page to appear as http://domain/logon.jsp (if i place /abc on the URI, the page appears to be

RE: action configuration

2002-01-18 Thread Henrik Chua
using the html:base/ tag? -Original Message- From: Henrik Chua [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 17, 2002 3:14 PM To: Struts Users Mailing List (E-mail) Subject: action configuration Hi! I am having a problem with struts. I am running an iPlanet web server 6 sp1

action configuration

2002-01-17 Thread Henrik Chua
Hi! I am having a problem with struts. I am running an iPlanet web server 6 sp1. The problem is I am having an error referencing my action class. My URI is just / and when I try to do an action like /logon.do the url changes from http://localhost/logon.jsp into http://logon.do instead of

session id appearing

2002-01-16 Thread Henrik Chua
Hi folks... I have a problem. What should i do so that the session ids do not appear in the hyperlinks or in the address bar when you execute a link or an action? coz right now, here is what comes out on my address bar.

nesting struts with JSP codes

2002-01-11 Thread Henrik Chua
Hi! Is it possible to nest JSP codes with struts tag? ex. html:link page=/index.jsp onmouseover=nav_home.src='/images/nav_home%=_on%.gif'; thanx h -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

forwarding question

2001-12-05 Thread Henrik Chua
Hi! How should I set the return type of the perform method of my action class such that I get back to the same page before the action is performed? like if i am on the a.jsp page, then I click on a link that does a perform method. I want to get back to the same page as I was. (without

RE: forwarding question

2001-12-05 Thread Henrik Chua
a.jsp in your struts-config.xml file like this: assuming you want to use 'success' as the name of the mapping, forward name=success path=/a.jsp / Shri -Original Message- From: Henrik Chua [mailto:[EMAIL PROTECTED]] Sent: Thursday, 6 December 2001 12:15 PM To: Struts Users Mailing List (E

radio button

2001-12-02 Thread Henrik Chua
Hi! how can I place dynamic values (values from an array) to radio buttons? I use the iterate tag to iterate through a list and I would like the value of each element to be the value of my radio buttons. should it be like this? logic:iterate id=element . html:radio property=reviewer

doing arithmitic ops

2001-11-30 Thread Henrik Chua
Hi! I have a simple question. Will I be able to produce a mathematically calculated value based on the input given without another variable? here's the scenario. JSP page 1, I have an input textfield (num) and a submit button on my form bean, I have a variable called num. on my action form, it

iterator tag

2001-11-30 Thread Henrik Chua
Hi! how can I use the iterate tag on an arraylist in my form bean to display the elements in the arraylist the bean name = BEAN the ArrayList of strings is Arr logic:iterate id=element name=BEAN property=arr bean:write name=element property=arr / /logic:iterate is this correct?