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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lotus Notes UI Automation

Status
Not open for further replies.

cs2009

Programmer
Aug 10, 2009
50
US
Using Visual Basic 2008, SQL Server 2005 and Lotus Notes client 6.5 thru 8.5.1.

I have a Visual Basic program that automates the Lotus Notes UI to create an email in HTML format. The program does not send the email, but presents the email to the user to preview.

This email contains a hyperlink to a web site. Here is a sample link constructed in the program:
Code:
<A HREF="[URL unfurl="true"]http://www.abfs.com/trace/abftrace.asp?blnBOL=TRUE&blnPO=TRUE&blnShipper=TRUE&blnConsignee=TRUE&blnABFGraphic=TRUE&blnOrigin=TRUE&blnDestination=TRUE&RefType=a&Ref=0123456789">0123456789[/URL]                </a>
This link works when I copy/paste it in IE. However, when I click the link in the sent email I see in IE that the last parameter has changed from &Ref=0123456789 to &Ref%0123456789. The "=" has changed to "%" and the link no longer works. This seems to be happening with all of my hyperlinks and not just the sample above.

Can someone help me prevent this translation?
 
I replaced the "=" character with ASCII character "61" and it worked.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top