How do you run a method from JScript I can do it when I put a button on the webpage but how do you just run a method without having to use a button
Thanks
Works below with a button but trying to run a method call RefreshData
<SCRIPT language="JScript">
function starttimer()
{
window.setTimeout("Refresh();",60000);
}
function Refresh()
{
document.Form1.btnUpdate.click();
}
</SCRIPT>
Thanks
Works below with a button but trying to run a method call RefreshData
<SCRIPT language="JScript">
function starttimer()
{
window.setTimeout("Refresh();",60000);
}
function Refresh()
{
document.Form1.btnUpdate.click();
}
</SCRIPT>