Making a Column display as a link

Hello … I have created a notes database which allows people to submit a URL. I want one column in the web view to display as a link. Teh column name is URL and it diplays information from field “url_address.” The view displays alternating colors in each row and I also want it to display as a link so when you click on it, it will take you to the URL.Can anyone help?

@NewLine + “” + url_address + “” + @NewLine

Subject: Making a Column display as a link

You can trie this:Have you marked the column in the properties; For web access: Show values in this column as links.

or

make your url adress as follow:

<a href="url_address">" + url_address + “”

Subject: Making a Column display as a link

I’m using HTML views with a column displaying an URL and is working fine, the column with the URL code is:

“<tr bgcolor="#F8F8F8"><font face="arial" size=2><font face="arial" size=2><A HREF="/mydatabase.nsf/viewname/”+URLField1+“?OpenDocument">”+URLField2+“”

Where:

URLField1 is the real URL of the Doc

URLField2 is the text to display in the URL link

For example:

URLField1 could contains the DocID of the document you will open with the URL and

URLField2 could contains a text like “Click here to view user data” or wherever you want.