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

How does a client request a function on the server?

Status
Not open for further replies.

solex

Programmer
Feb 28, 2003
91
GB
Hello,

I have this code in my main.asc script:

MoveClickerToRequest = function(destination)
{
trace("function was called to go to:" + destination);
}

how do i call this function and pass "destination" to the server?

thanx inadvance
solex
 
Is destination a URL?

If so:

Code:
MoveClickerToRequest = function(destination) 
{
trace("function was called to go to:" + destination); 
getURL(destination,"_blank");
}

Otherwise you might need to provide a little more information on what you are trying to pass the information to on the server.

Hope it helps.



Wow JT that almost looked like you knew what you were doing!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top