If you're pushing a button, just make the button a submit button in a form
with your target page as the action
<form action="yourpage.aspx" method="get">
<input type="submit" value="Click me">
</form>
Or use a link, or javascript;
<script language="javascript">
window.location.href = 'yourpage.aspx';
</script>
> Hi,
>
[quoted text clipped - 15 lines]
> Thanks in advance
> Valli
Valli - 22 Oct 2007 11:23 GMT
Hi,
Thanks for your answer. It works fine.
Regards
Valli
> If you're pushing a button, just make the button a submit button in a form
> with your target page as the action
[quoted text clipped - 28 lines]
>> Thanks in advance
>> Valli