Passing Parameters From Javascript To A Lotusscript Agent

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.

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

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.