I am not really sure why you want to know but here is the short explanation:

 <s:url id="edit" action="edit" method="input" namespace="/">

This will construct a url like: "/edit.action", and push it into the
stack, associated with the key "edit" (from the "id" attribute). Later
on

<s:a href="%{edit}" >Edit</s:a>

"%{edit}" will be evaluated against the stack and "/edit.action" will
be found, so that is the value that the anchor tag will use on its
href.

musachy


On Fri, May 9, 2008 at 8:59 AM, akshi gupta <[EMAIL PROTECTED]> wrote:
> Hello,
>
> If we use anchor tag like this :
>
> (ListSuccess.jsp) :          ========>     <%@ taglib prefix="s"
> uri="/struts-tags"%>
> .............................
> .............................
>  ========>     <s:url id="edit" action="edit" method="input" namespace="/"
> />
>  ========>      <s:a href="%{edit}" >Edit</s:a>
>
>
> Now , how href value get parse and get the complete url ?
> Exactly through which method of the AnchorTag.java?
>
> Can anyone please help me out ?
>
>
> Thanks,
>
> Akshi
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-- 
"Hey you! Would you help me to carry the stone?" Pink Floyd

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to