Gossamer Forum
Home : Products : Links 2.0 : Discussions :

URL of a link into a hidden form field - HELP

Quote Reply
URL of a link into a hidden form field - HELP
I'm trying to get the direct url of a link into a hidden form field for java to rewrite.

This is included on the Detailed pages which I have activated.

Now the form is as follows

<form name=login>
<input type=password name=password size=20>
<input type=hidden name=url value=<%url%>>
<input type=button value="Login!" onClick="Login(this.form)" name="button">
</form>

I'm having difficulty in getting the direct url of a link into the form, for java to re-write the url.

I am experimenting on a project using links as a file database for my ftp server.

Thanks and Regards - Gerrit

Quote Reply
Re: URL of a link into a hidden form field - HELP In reply to
Field names/Tags are CASE SenSiTiVE...

Code:

<%URL%>


NOT...<%url%>.

Regards,

Eliot Lee