From: "minhnguyet" <[EMAIL PROTECTED]> > I want to link from a section to another section in the same page . Some thing like this > <html:link anchor="#1" > view </html:link> link to the section in the same page > <html:link hrefName="1" > Description </html:link>. > ( like html : <a href ="#1" >view</a> and <a name="1" >Description </a> ) > But it really not works .I don't know how to do this ?
If that's all you want to do, just use the HTML tags. There's no reason to use tags if the content isn't dynamic. Alternately, take a look at the docs: http://struts.apache.org/userGuide/struts-html.html#link One problem I see is that you've written <html:link anchor="#1" > when the docs say "Specify this value WITHOUT any # character". It also says you MUST specify one of action, forward, href, linkName or page... and you haven't. -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

