Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get Current URL from Inotes

Status
Not open for further replies.

thawkins99

Programmer
Sep 20, 2005
2
0
0
US
I did post this yesterday on the IBM Lotus Notes forum which I normally don't do, but I don't think that forum is very busy as it use to be.

I do hope someone can help.

Hi, I'm not really with familiar with web programming. I hope someone can point me in the right direction. I need to send my users an email with either a hotspot or a hyperlink that uses the users current URL and then adds AgentName?OpenAgent. The user's current URL would be there mail database.

http:\\server\mail\user.nsf\anagent?OpenAgent

Thanks.
 

Try creating a url link hotspot whose value is computed via formula.
Use this formula:
"/" + @WebDbName + "/anagent?OpenAgent"

"/" at the beginning of the URL means the path is relative to the root of the same server.

Haven't tried this myself, so let me know how it goes.
 
You might want to replace the quotes with curly braces

i.e.
{/} + @WebDbName + {/anagent?OpenAgent}

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top