1,055 pts.
 LotusScript
I am using an URL to open a document link which has following format: notes://servername/database path/viewname?Opendocument. Since the URL becomes long string I want the URL to be short instead. The link should open the same document but alternate short string should be visible. How to do this?

Software/Hardware used:
Lotus script
ASKED: March 20, 2013  4:40 AM
UPDATED: March 20, 2013  11:45 AM

Answer Wiki:
Last Wiki Answer Submitted:  Be the first to answer this question.
All Answer Wiki Contributors:  Be the first to answer this question. Michael Tidmarsh   11,380 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

If it just said something like “Click here” and had the url as the href value, would that work for you?

 2,700 pts.

 

Yes, I want that short of thing using lotus script.

A link that has href value.
 1,055 pts.

 

So, to use your example then , instead of your code writing “notes://servername/database path/viewname?Opendocument” have it write the following:

<a href=”notes://servername/database path/viewname?Opendocument”>Click here</a>

Click here

 2,700 pts.