Hi all,
I’m new to web development. and got a work on click of a hotspot button some action action to be performed. i wrote the needed functionality in an agent.Its working fine in client.
i need to call that agent in that button.
i cant use formula/lotus script, bcos already one more function is calling from the same button.
for ex: names1(ca, …) function already exists in the button.
Now , i added …
Path=“/”+document.forms(0).DB_Name.value+“/agent1?Openagent”;
alert(Path);
//location.href = path
It displays the complete path after execution of the first function bcos of alert. if i use …
location.href = path
agent is working, but complete window is getting refreshed with the url in the path.
suggest me…how to call the agent to run in the same window…
thanks in advance…