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)