Re: How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread Joe Germuska
The "action" attribute of the html:link tag and the "path" attribute of the action element should be identical. Note that the value of the "paramName" attribute ("viewcontactlist" in your example) is not a string literal, but rather the name of a bean in some scope (page, request, session, or

RE: How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread Slattery, Tim - BLS
> i.e. > Do I need to put ContactForm instead of 'contacts' for path... > > type="com.db.gcp.lemweb.blotter.servlets.ContactAction" >name="contactForm" >input="/viewcontactlist.jsp" >scope="request"> > No, "contacts" is the URL

Re: How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread Mehran Zonouzi
uot; <[EMAIL PROTECTED]> >cc: Subject: Re: How do you mimic the 'a href' functionality in Struts?

Re: How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread Joe Germuska
At 15:03 +0100 9/9/03, Mehran Zonouzi wrote: Yes I am going to pass the same param to the link every time. This is what I have replaced the link with. I am not too sure if I should be using the href property to call my ActionForm class. At first encounter, the distinctions between the various

Re: How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread Mehran Zonouzi
Yes I am going to pass the same param to the link every time. This is what I have replaced the link with. I am not too sure if I should be using the href property to call my ActionForm class

Re: How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread Joe Germuska
In general, you use the tag http://jakarta.apache.org/struts/userGuide/struts-html.html#link For the destination of the link, it takes one of four attributes: forward, action, href, or page. The mechanism for specifying a single parameter for the link uses these attributes: paramId

RE: How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread James Childers
> -Original Message- > From: Mehran Zonouzi [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 09, 2003 8:24 AM > To: Struts Users Mailing List > Subject: How do you mimic the 'a href' functionality in Struts? > > href="/servlets/blotter/Con

How do you mimic the 'a href' functionality in Struts?

2003-09-09 Thread Mehran Zonouzi
Hi, I have the following link in my JSP page: Contact List I want to mimic the above using Struts JSP tags(I don't want to use a SUBMIT button). However, I want to call my ActionForm class instead of the servlet and I would like to set the value of the param 'page' to 'viewcontactlist' for my

Re: dinamically add href into html:link

2003-08-31 Thread Jiri Chaloupka
OK, thanks for your view. Maybe it will be better to rewrite it, until there is not much code... Jiri Mark Lowe wrote: If you've the choice use JSTL.. If you're using the expression language then use that. I like using the standard struts tags but that because there's no el. and after readin

Re: dinamically add href into html:link

2003-08-31 Thread Mark Lowe
in a near future. -Mensaje original- De: Jiri Chaloupka [mailto:[EMAIL PROTECTED] Enviado el: domingo, 31 de agosto de 2003 18:36 Para: Struts Users Mailing List Asunto: Re: dinamically add href into html:link Thanks, I used html-el and it works. what is the better to use, use c:url or html-el

RE: dinamically add href into html:link

2003-08-31 Thread Carlos Sánchez
sers Mailing List > Asunto: Re: dinamically add href into html:link > > > Thanks, I used html-el and it works. > what is the better to use, use c:url or html-el:link? Or it is > equivalent here? > > And one more queestion: > I have object with application persistency (over

Re: dinamically add href into html:link

2003-08-31 Thread Yann Cébron
> how I can do something as this: > > > ? Use the EL-tags (look in the contrib/struts-el directory of the Struts 1.1 distribution), e.g. .. .. HTH, Yann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: dinamically add href into html:link

2003-08-31 Thread Vic Cekvenich
Are you able to use JSTL? I use JSTL for that. Jiri Chaloupka wrote: Hallo, how I can do something as this: ? I tried page (in manual I read that it canbe created dynamicaly, but it does not), action, href... it is still generated as Home instead of /apl/Index.do I know I can do "> but

dinamically add href into html:link

2003-08-31 Thread Jiri Chaloupka
Hallo, how I can do something as this: ? I tried page (in manual I read that it canbe created dynamicaly, but it does not), action, href... it is still generated as Home instead of /apl/Index.do I know I can do "> but it does not add application prefix :( Than

Re: dinamically add href into html:link

2003-08-31 Thread Mark Lowe
The ideal way would be something like this. Cheers Mark On Sunday, August 31, 2003, at 04:27 PM, Yann Cébron wrote: how I can do something as this: ? Use the EL-tags (look in the contrib/struts-el directory of the Struts 1.1 distribution), e.g. .. .. HTH, Yann ---

Re: dinamically add href into html:link

2003-08-31 Thread Mark Lowe
opps... is better On Sunday, August 31, 2003, at 05:02 PM, Mark Lowe wrote: The ideal way would be something like this. Cheers Mark On Sunday, August 31, 2003, at 04:27 PM, Yann Cébron wrote: how I can do something as this: ? Use the EL-tags (look in the contrib/struts

Re: dinamically add href into html:link

2003-08-31 Thread Jiri Chaloupka
Thanks, I used html-el and it works. what is the better to use, use c:url or html-el:link? Or it is equivalent here? And one more queestion: I have object with application persistency (over all sessions), and for session I call some method to set some parameter and get another object (array lis

RE: [Tiles Beginner Question] Href & Tile Definitions

2003-06-09 Thread Trieu, Danny
Here is how you should do it: ... .. Your.jsp -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED] Sent: Sunday, June 08, 2003 5:07 PM To: [EMAIL PROTECTED] Subject: [Tiles Beginner Question] Href & Tile Definitions I've successfully got til

Re: [Tiles Beginner Question] Href & Tile Definitions

2003-06-09 Thread Sandeep Takhar
ction sandeep --- Pat Quinn <[EMAIL PROTECTED]> wrote: > I've successfully got tiles up and running... I do > understand how i can use > a tile definition as a struts forward for my > actions but i'm looking to > redirect to a tile definition using a href link. &

Re: [Tiles Beginner Question] Href & Tile Definitions

2003-06-09 Thread Sandeep Takhar
do > understand how i can use > a tile definition as a struts forward for my > actions but i'm looking to > redirect to a tile definition using a href link. > E.g. > > I have the following tile definition: > > > > > > > > I h

[Tiles Beginner Question] Href & Tile Definitions

2003-06-08 Thread Pat Quinn
I've successfully got tiles up and running... I do understand how i can use a tile definition as a struts forward for my actions but i'm looking to redirect to a tile definition using a href link. E.g. I have the following tile definition: I have tried the fol

Re: html link href, forward an action attribute

2003-06-06 Thread Kevin Robair
Someone already has: http://jakarta.apache.org/struts/userGuide/struts-html.html#link -Kevin --- [EMAIL PROTECTED] wrote: > > Can someone explain me > the great difference beetween action, href and > forward attribute > with the html link tag. > supposing that there

html link href, forward an action attribute

2003-06-06 Thread meissa . Sakho
Can someone explain me the great difference beetween action, href and forward attribute with the html link tag. supposing that there is an action that corresponds to the forward attribute Meissa L'integrite de ce message n'etant pas assuree sur internet, Natexis Banques Populaires ne

Re: RE: how to put a in a href=""

2003-06-05 Thread Adolfo Miguelez
I meant: From: "Adolfo Miguelez" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: RE: how to put a in a href="" Date: Wed, 04 Jun 2003 19:54:18 + No way to embed custom tags so AFA

Re: RE: how to put a in a href=""

2003-06-05 Thread Adolfo Miguelez
No way to embed custom tags so AFAIK it is the only chance: Adolfo From: "António Santos" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: RE: how to put a in a href="" Date: Wed, 4 Ju

RE: RE: how to put a in a href=""

2003-06-05 Thread Mike Whittaker
>By the way, is there any other way to put a bean property in a "value" >attribute of an input of a HTML form? >I mean, supposing that I have a "orgview" bean, is there a better way to do >this (which of course doesn't work): > >property="id"/>"/> > >in order to put the orgview's "id" property val

Re: RE: how to put a in a href=""

2003-06-05 Thread António Santos
; >Do this > >paramProperty="id" > > >-Original Message- >From: António Santos [mailto:[EMAIL PROTECTED] >Sent: Wednesday, June 04, 2003 11:54 AM >To: [EMAIL PROTECTED] >Subject: how to put a in a href="" > > > >Hi all, > >

Re: how to put a in a href=""

2003-06-05 Thread Mark Lowe
EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 12:54 PM To: [EMAIL PROTECTED] Subject: how to put a in a href="" Hi all, Maybe this is a simple question, but I'm stuck with this: How can I set a href in a tag with a string concatenated with a ? I mean, I want to do somethi

RE: how to put a in a href=""

2003-06-05 Thread Varun Garg
Do this -Original Message- From: António Santos [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 11:54 AM To: [EMAIL PROTECTED] Subject: how to put a in a href="" Hi all, Maybe this is a simple question, but I'm stuck with this: How can I set a href in a ta

RE: how to put a in a href=""

2003-06-05 Thread Chen, Gin
2 possibilities without using scriplets: 1) Struts-EL: 2) JSTL: -Tim -Original Message- From: António Santos [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 12:54 PM To: [EMAIL PROTECTED] Subject: how to put a in a href="" Hi all, Maybe this is a simpl

how to put a in a href=""

2003-06-05 Thread António Santos
Hi all, Maybe this is a simple question, but I'm stuck with this: How can I set a href in a tag with a string concatenated with a ? I mean, I want to do something like this: "> Of course, this doesn't work. I want href to have the string "getorg.do?id=" concatena

Re: href

2003-02-10 Thread Nicolas De Loof
> > only print your bean property value in JSP outputStream. You should look at data type used for your "url" property, and it's toString() method. Nico. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: href

2003-02-10 Thread Michael Burke
Michael Burke wrote: I've got a jsp page that iterates through a list of web links, I can t figure out how to use just the link without it being appended to http://localhost... Here's the page in question: <%@ taglib uri="/bean" prefix="bean" %> <%@ taglib uri="/html" prefix="html" %> <%@ tagli

Re: href

2003-02-10 Thread Michael Burke
Michael Burke wrote: I've got a jsp page that iterates through a list of web links, I can t figure out how to use just the link without it being appended to http://localhost... Here's the page in question: <%@ taglib uri="/bean" prefix="bean" %> <%@ taglib uri="/html" prefix="html" %> <%@ tagli

href

2003-02-09 Thread Michael Burke
I've got a jsp page that iterates through a list of web links, I can t figure out how to use just the link without it being appended to http://localhost... Here's the page in question: <%@ taglib uri="/bean" prefix="bean" %> <%@ taglib uri="/html" prefix="html" %> <%@ taglib uri="/logic" prefix="

href to perform an action

2002-10-30 Thread Mohan Radhakrishnan
Hi, I have a doubt related to this and the html-img tag. I am refreshing some data in the session scope when the user hits the "reload" button. I am planning to use html-img tag if it really helps. The "href" shown above already reloads the current page. I am using

RE: href to perform an action

2002-10-30 Thread David Graham
at SF x4874 <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Subject: RE: href to perform an action Date: Wed, 30 Oct 2002 15:25:23 -0800 This is the error I have

RE: href to perform an action

2002-10-30 Thread Cindy Horn at SF x4874
2 2:24 PM To: Struts Users Mailing List Subject: RE: href to perform an action 500 is an internal server error. Can you check your log files and try to find more detail or even a stack trace? James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org "Only two things a

RE: href to perform an action

2002-10-30 Thread David Graham
o: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Subject: RE: href to perform an action Date: Wed, 30 Oct 2002 14:15:06 -0800 Then why would this not work? The first line I have in my perform method

RE: href to perform an action

2002-10-30 Thread James Mitchell
the former." - Albert Einstein (1879-1955) > -Original Message- > From: Cindy Horn at SF x4874 [mailto:CHorn@;matson.com] > Sent: Wednesday, October 30, 2002 5:15 PM > To: 'Struts Users Mailing List' > Subject: RE: href to perform an action > > > Then why

RE: href to perform an action

2002-10-30 Thread Cindy Horn at SF x4874
m1980@;hotmail.com] Sent: Wednesday, October 30, 2002 12:46 PM To: [EMAIL PROTECTED] Subject: RE: href to perform an action Actions do accept GET requests. >From: Cindy Horn at SF x4874 <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]&g

RE: href to perform an action

2002-10-30 Thread David Graham
Actions do accept GET requests. From: Cindy Horn at SF x4874 <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts (E-mail)" <[EMAIL PROTECTED]> Subject: RE: href to perform an action Date: Wed, 30 Oct 2002 12:25:32

RE: href to perform an action

2002-10-30 Thread Cindy Horn at SF x4874
ion class not accept a GET? -Original Message- From: Penubothu, Rajani [mailto:rpenubothu@;epocrates.com] Sent: Wednesday, October 30, 2002 10:17 AM To: '[EMAIL PROTECTED]' Subject: Re: href to perform an action You might want to checkout tag. Using that tag, you need

RE: href to perform an action

2002-10-30 Thread James Mitchell
PM > To: Struts (E-mail) > Subject: href to perform an action > > > I have a jsp with a list of shipment data where hrefs are defined on the > equipment keys. I would like the client to click on the link to > drill down > from the list to a detailed jsp. If I do the following: &

Re: [href to perform an action]

2002-10-30 Thread Josh Berry
t relative path to the action. Make sure you have the correct path being defined. (As a hint, when you click the link and get a 404, look at what is in the address bar at that point. I have found that the webapp base is usually lost if you do an HREF such as this.) Second, though, I would recomme

href to perform an action

2002-10-30 Thread Cindy Horn at SF x4874
I have a jsp with a list of shipment data where hrefs are defined on the equipment keys. I would like the client to click on the link to drill down from the list to a detailed jsp. If I do the following: I get a 404 url not found. How do I get the link to go to the shipmentTracking Action? D

javascript with a href

2002-10-21 Thread Michael Burke
When I click on the edit, delete bid or Accept Bid links in the logic tags below nothing happens. Any suggestions why? %@ taglib uri="/bean" prefix="bean" %> <%@ taglib uri="/html" prefix="html" %> <%@ taglib uri="/logic" prefix="logic" %> <%@ taglib uri="/template" prefix="template" %>

RE: base href (html:base) tag

2002-09-24 Thread Anand Belaguly
(like stylesheets,images etc etc) on the page, and it is already available (we don't Need to re-desing/re-write anything). Anand -Original Message- From: Dylan MacDonald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 24, 2002 12:04 PM To: [EMAIL PROTECTED] Subject: base

base href (html:base) tag

2002-09-24 Thread Dylan MacDonald
of the web developers believe that we should set a J2EE directive which maps all requests to the application context we set. That way, we can set the pathing to be whatever we want without being constrained by what the Base Href is. By using , I assume that we will be adding a BASE HREF tag to the to

dynamic href variable

2002-08-25 Thread Christian Pich
How do I populate the href attribute in the tag? I have the following code with a bean 'score' that contains the url I want to put in the hyperlink tag. where xxx should be the same as the body of this (mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Building a dynamic list of html (href) links from a Map

2002-06-25 Thread Karim Saloojee
Hi I am trying to build a dynamic list of links (href's) from a map that has been created in my Action class and put into the request for the JSP. My map looks something like this: key: Log On Value: /logon.do key: Display Users value: /displayusers.do Is there a way to use the tag to build th

RE: Help to manage html href tag with sruts

2002-03-05 Thread Don Dumrauf
I did this: etc. I defined mailTo as a String = "mailto:"; Hope this answers your question -Original Message- From: Apollinaire Coulibaly [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 12:41 PM To: [EMAIL PROTECTED] Subject: Help to manage html href tag with srut

Help to manage html href tag with sruts

2002-03-05 Thread Apollinaire Coulibaly
Hi all, I've the following situation: I have to manage this html tag Can some tell to me how to manage it using taglibrary? how can I pass the user email adress to the tag as: Thanks all PitB -- ___ Sign-up for your own FREE Personalized E-mail

RE: HREF issue

2002-01-24 Thread Andrew B Forman
_ generation-d development andrew b forman > -Original Message- > From: Sidhartha Jain [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 24, 2002 8:52 AM > To: [EMAIL PROTECTED] > Subject: HREF issue > > > > Hi > I am waiting for the soluti

HREF issue

2002-01-24 Thread Sidhartha Jain
Hi I am waiting for the solution for my problem for someone and seems no one is responding to it.I dunno know why this is happening.I would highly appreciate if someone could help me solve my problem. here i am stating my problem once again. I am having an issue with tag of struts. I think I

Fwd: Href issue

2002-01-23 Thread Sidhartha Jain
Hi I am having an issue with tag of struts. I think I don't know how to use it. Actually I have a java script fucntion which looks like this function launchEdit(field, accField, relation, newType) { currentField = document.editForm.field; currentAccField = document.editForm.accField; isRelat

RE: Question on forwarding/redirecting/href usage...

2002-01-21 Thread Alex Paransky
ic in this case. I could create my own tag, but I thought I would ask around before re-inventing the wheel. Thanks. -AP_ -Original Message- From: neel [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 11:25 AM To: Struts Users Mailing List Subject: RE: Question on forwarding/re

RE: Question on forwarding/redirecting/href usage...

2002-01-21 Thread neel
try using instead of -- Original Message -- >When I use ActionForward I supply it the Context-relative URI to which >control should be forwarded. However, when I want to use cannot use the Context-relative URI. Thus my returnTo= backlink works >correctly if I use it with the ActionForward, b

Question on forwarding/redirecting/href usage...

2002-01-21 Thread Alex Paransky
When I use ActionForward I supply it the Context-relative URI to which control should be forwarded. However, when I want to use mailto:[EMAIL PROTECTED]> For additional commands, e-mail:

Solved: Access to localized messages to build an href

2002-01-08 Thread Jim Tomlinson
day, January 07, 2002 3:39 PM > To: '[EMAIL PROTECTED]' > Subject: Access to localized messages to build an href > > > I'm trying to get access to the MessageResources object that, > according to > the docs, is an application scope bean. I need to build an

Access to localized messages to build an href

2002-01-07 Thread Jim Tomlinson
I'm trying to get access to the MessageResources object that, according to the docs, is an application scope bean. I need to build an href in this manner: + "/refend.html"%>">Click here Of course, this doesn't work (with single quotes, either, as suggeste

RE: html:link href to external URL in a

2001-12-05 Thread Rob Breeds
cc: Subject: RE: html:link href to external URL in a 05/

RE: html:link href to external URL in a

2001-12-05 Thread Siggelkow, Bill
You can do this by just coding the link in with an HTML anchor tag as folows: "> or use an expression -Original Message- From: Rob Breeds [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 11:03 AM To: Struts Users Mailing List Subject: html:link

html:link href to external URL in a

2001-12-05 Thread Rob Breeds
I effectively want to do: "> but can't do nested tags. How do I dynamically populate the content of the href attribute? Help please! Thanks Rob Breeds -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Reaching Action class from Href Link

2001-08-31 Thread CityBoyForLove
Hi, U can use the link some like this. click here < /html:link> to replace the html form. enjoy bala

RE: Linking HREF with Action

2001-08-16 Thread dhay
Lex/Lexmark) Subject: RE: Linking HREF with Action In that case you can just use any old actionformobject and asssociate it, what you will then use out of the mapping in the config file is only the action, and j

RE: Linking HREF with Action

2001-08-15 Thread Dudley [EMAIL PROTECTED]
Message- From: Olivier Houyoux [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 8:45 AM To: [EMAIL PROTECTED] Subject: Linking HREF with Action Hi all, I just wanted to know if it's possible to define an Action in the Struts config XML file that would be called from an HTML

Re: Linking HREF with Action

2001-08-15 Thread Oleg V Alexeev
Hello Olivier, Thursday, August 16, 2001, 10:44:54 AM, you wrote: OH> Hi all, OH> I just wanted to know if it's possible to define an Action in the Struts config XML file that would be called from an HTML link (html:link tag) that IS NOT within a form ? OH> I tried but it seems that the frame

Linking HREF with Action

2001-08-15 Thread Olivier Houyoux
Hi all, I just wanted to know if it's possible to define an Action in the Struts config XML file that would be called from an HTML link (html:link tag) that IS NOT within a form ? I tried but it seems that the framework needs an ActionForm bean associated with each Action. Any idea, comments ?

Reaching Action class from Href Link

2001-08-03 Thread John M. Corro
I've recently begun working with Struts and am looking to create a scenario where a user can click on a link and trigger some event in an Action class (ie the clicking of a link would be the same as clicking a form's submit button). My understanding is that within Struts forms submit by the post

RE: Reaching Action class from Href Link

2001-08-03 Thread Fletcher, Ken
gular fashion: Does anyone else have a more elegant solution to this? -Original Message- From: Greg Maletic [mailto:[EMAIL PROTECTED]] Sent: Friday, August 03, 2001 2:13 PM To: [EMAIL PROTECTED] Subject: RE: Reaching Action class from Href Link In my JSP, I've got:

RE: Reaching Action class from Href Link

2001-08-03 Thread Fletcher, Ken
I tried unsuccessfully to do that. Maybe I missed something - do you still have to add the bean to the HttpSession? -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Friday, August 03, 2001 2:41 PM To: [EMAIL PROTECTED] Subject: RE: Reaching Action class from Href

Re: Reaching Action class from Href Link

2001-08-03 Thread Martin Cooper
:09 PM 8/3/01, John M. Corro wrote: >Ken clarified my point - that in a form's 'action' you don't need to tack >the '.do' extension to the end of the action mapping (ie >action="SomeAction"). In a link's 'href' value you do need to tack on th

RE: Reaching Action class from Href Link

2001-08-03 Thread Gus Delgado
In addition, If you set the variables from your bean into an ActionForm you won't even have to use the neither. -Original Message- From: Fletcher, Ken [mailto:[EMAIL PROTECTED]] Sent: Friday, August 03, 2001 2:32 PM To: '[EMAIL PROTECTED]' Subject: RE: Reaching Action

Re: Reaching Action class from Href Link

2001-08-03 Thread Martin Cooper
If you use the Struts tag, the value of the 'action' attribute is used to look up the corresponding action mapping, and Struts will append the ".do" if you are using extension mapping for your servlet. If you use the Struts tag with the 'href' attribute, then

RE: Reaching Action class from Href Link

2001-08-03 Thread Greg Maletic
: Reaching Action class from Href Link Thanks to John and Ken for the assistance. Point of clarification other interested newbies, using a form's 'action' value as the link's 'href' value will not work - the reason mine wasn't working. For insta

RE: Reaching Action class from Href Link

2001-08-03 Thread Greg Maletic
e: it's being jumped to in lieu of calling my action. What have other people experienced when using the "input" tag? Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] rg]On Behalf Of Fletcher, Ken Sent: Friday, August 03, 2001 12:32 PM To

RE: Reaching Action class from Href Link

2001-08-03 Thread Fletcher, Ken
I'm using Tomcat.don't know if it'll work using something else. Maybe if you show some of your code I can help. -Original Message- From: Greg Maletic [mailto:[EMAIL PROTECTED]] Sent: Friday, August 03, 2001 1:59 PM To: [EMAIL PROTECTED] Subject: RE: Reaching Action

Re: HREF link question - oops!

2001-06-17 Thread Rick Horowitz
IE 4.72) shows: > > When I use the tag: > > href="http://localhost:8080/backup/jsp/prodinfo/prod-info.jsp";> in the > HTML head section, and > > The link is generated as: > >

Re: HREF link question

2001-06-14 Thread Rick Horowitz
owser, Netscape 4.6.1 or IE 4.72) shows: When I use the tag: http://localhost:8080/backup/jsp/prodinfo/prod-info.jsp";> in the HTML head section, and The link is generated as: Introduction as

Re: HREF link question

2001-06-14 Thread Craig R. McClanahan
On Wed, 13 Jun 2001, Rick Horowitz wrote: > Hi, > > I'm trying to use href links with Struts templates, and can't figure out > how to make my href links work properly. [Templates seem to work just > fine, otherwise.]... my compliments. > > 1. I want

HREF link question

2001-06-13 Thread Rick Horowitz
Hi, I'm trying to use href links with Struts templates, and can't figure out how to make my href links work properly. [Templates seem to work just fine, otherwise.]... my compliments. 1. I want to use Struts tags so that to automatically do URL session encoding. 2. I want to us