Passing Parameters From Javascript To A Lotusscript Agent

In javascript you can call lotusscript agents using domino urls.

Say you have an agent named my_agent. You can call this agent and pass
parameters to it in javascript using the following code:

//setup the url path
var path = new String(window.location);
path = path.toLowerCase();
path = path.substring(0, path.lastIndexOf(".nsf") + 5);

var myAgent = new String(path + "my_agent?OpenAgent");

// now that the url for the agent has been built
// you can add parameters to the end of the url
// in this example I will use a name and email as
// parameters

myAgent = myAgent + "&Phil+Evens~phil@somedomain.com";


Now you can access these parameters in your lotus script agent using the
QUERY_STRING cgi variable.

dim session as NotesSession
dim doc as NotesDocument
dim query_string as String

set session = new NotesSession
set doc = session.DocumentContext
query_string = doc.QUERY_STRING(0)


The query_string variable should now equal
"?OpenAgent&Phil+Evens~phil@somedomain.com"

Now you can parse this string to get the parameters.

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.