Hi! Friends,
I tried calling an ASP page on the click of the Hover Button using Frontpage 2000. I have tried using the URL property of it, using functions in javascript and then calling it on the click method of the Button, but in vain. Am currently working with the Submit button only, which is working fine.
Could any one of you kindly help me out with the same at the earliest.
Thanks and have fun coding.
-Kumar Navin.
My code was:-
<script language="javascript">
function calling()
{
document.form.action="http://localhost/jewel/account.asp"
}
</script>
<%
----
----
<applet code="fphover.class" codebase="./" width="120" height="24">
<param name="color" value="#000080">
<param name="hovercolor" value="#0000FF">
<param name="textcolor" value="#FFFFFF">
<param name="text" value="Submit">
<param name="effect" value="glow">
<param name="url" value=calling()>
</applet>
----
----
%>
I tried calling an ASP page on the click of the Hover Button using Frontpage 2000. I have tried using the URL property of it, using functions in javascript and then calling it on the click method of the Button, but in vain. Am currently working with the Submit button only, which is working fine.
Could any one of you kindly help me out with the same at the earliest.
Thanks and have fun coding.
-Kumar Navin.
My code was:-
<script language="javascript">
function calling()
{
document.form.action="http://localhost/jewel/account.asp"
}
</script>
<%
----
----
<applet code="fphover.class" codebase="./" width="120" height="24">
<param name="color" value="#000080">
<param name="hovercolor" value="#0000FF">
<param name="textcolor" value="#FFFFFF">
<param name="text" value="Submit">
<param name="effect" value="glow">
<param name="url" value=calling()>
</applet>
----
----
%>
Comment