possible to create call a Domino Agent form a Web Button?
120 pts.
0
Q:
possible to create call a Domino Agent form a Web Button?
Is it possible to create a button on a Domino Web Page, and have that button call a Domino Agent in the same DB?


Software/Hardware used:
Domino iSeries
ASKED: Sep 30 2009  6:38 PM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
285 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
have you looked at calling the agent via @command; eg @Command([ToolsRunMacro];"notify_acct_mgr")
Last Answered: Oct 1 2009  1:11 PM GMT by Wolfen   285 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Hdwest61   120 pts.  |   Oct 2 2009  7:55PM GMT

Couldn’t get that to work, but I ended up with this

function runAgent() {
self.location.href=’AgentName?OpenAgent’;
}

<input type="button” value="Button Text” class="submit” onClick="runAgent();”>

 

Kcarver   40 pts.  |   Oct 8 2009  2:44PM GMT

If want to use formula:
@URLOpen(”/”+ @WebDbName+”MyAgent?OpenAgent&Var1="+value+”&Var2="+value2)
where “MyAgent” is the name of your agent and “&Var1=value” is a normal querystring, if needed.

 
0