View Single Post
  #2 (permalink)  
Old Nov 18th, 2005, 19:20
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,953
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Re: Link to call a function

basically you need to have the link point back to the same page with a querystring such as, eg: mypage.asp?do=myfunc

In your asp you can check the variable and act accordingly:-
Code: Select all
If request.querystring("do") = "myfunc" Then
    'call your function in here
end if
Hope that makes sense.

If you need further help, then please post your code here (using [code][/code] tags)
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
Reply With Quote