Hi,
you can create a function that calls other function, then you only have to call this function, that would be in javascript not in asp as you would have to reload the page to do so.
In
JS:
Code:
function funct1()
{
//have this function do what ever you want it to do
}
function funct2()
{
//same here with function 2
}
function callAboveFunctions()
{
funct1();
funct2();
}
In your html <a href="javascript:callAboveFunctions();">Click here to trigger the 2 fonctions</a>
Hope this helps