javascript Redirect wont work with "image" button in ASP.NET

asp.net , java , javascript Romania
  • 13 years ago

    I've got this Javascript fuction below

    function doit()

    {

    window.location.href = 'http://www.msn.com';

    }

    Then I got this simple HTLM code in my Test.aspx page

    <input type="button" value="Redirect" onclick="doit();" />

    <input type="image" src="PrettyGraphic.gif" onclick="doit();" />

    Problem is the regular button (type=button) works fine (the page gets redirected okay) but the image button does NOT. And this problem happens only when its an aspx file. With a regular .htm file, everuthing works great.

    Any help would be greatly appreaciated

     

     

     

  • 13 years ago

    Hi,

    try the below one...

    function doit()

    {
        window.location.href = 'http://www.msn.com';
        return false;
    }

     

     <input type="image" src="PrettyGraphic.gif" onclick="return doit();" />

     

Post a reply

Enter your message below

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Some people, when confronted with a problem, think "I know, I’ll use regular expressions." Now they have two problems.” - Jamie Zawinski