Skip to content Skip to sidebar Skip to footer

Redirecting To An Aspx.page Using Javascript

I want to redirect to an aspx page using javascript but upon attemptin this I get the following error uncaught type error. Property 'location'of object[object global] is not a func

Solution 1:

Try

location.href = "SearchResults?search="+txtBoxValue);

Solution 2:

please try window.location.href = "SearchResults?search="+txtBoxValue;

Solution 3:

Try This.

location.replace("SearchResults?search="+txtBoxValue);

Solution 4:

Please check

ScriptManager.RegisterStartupScript(this, this.GetType(), "popup", "alert('You are redirecting...');window.location='Yourpage.aspx';", true);

Solution 5:

In Asp.NET MVC

You can also do try this:

var parameter= $("#parameter_id").val();
  1. When you want to call another action from the curent controller:

    location.href = ("actionName?parameter=" + parameter);
  2. When you want to call a action from another controller:

    location.windows= ("~/controllerName/actionName?parameter=" + parameter);

Hope it helps.

Post a Comment for "Redirecting To An Aspx.page Using Javascript"