How can i redirect from a webmethod?

O

omer013

Hi;
I have an aspx page with a WebMethod to redirect the user to another page.
The Default.aspx.cs is;

public partial class _Default : System.Web.UI.Page
{
[WebMethod]
public static void redirect_user()
{
HttpContext.Current.Response.Redirect("home.aspx");
}
}

and Default.aspx file;

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">

<script type="text/javascript">

function Button1_onclick()
{
PageMethods.redirect_user(redirectSuccess, redirectError);
}

function redirectSuccess(result)
{
alert(result);
}

function redirectError(error)
{
alert(error.get_message());
}

</script>

<asp:ScriptManager ID="ScriptManager1" runat="server"
EnablePageMethods="True" >
</asp:ScriptManager>
<div>
<input id="Button1" type="button" value="button" onclick="return
Button1_onclick()" />
</div>
</form>
</body>
</html>

When i use HttpContext.Current.Response.Redirect("home.aspx"); i have the
"Thread was being aborted" error. And if i use the
HttpContext.Current.Response.Redirect("home.aspx", false); overload i have
the "Authentication failed" error. So how can i redirect from a webmethod?
 
B

bruce barker

you can not redirect the client from a web method. the redirect only
redirects the method call. your web method should return the redirect url,
and javascript can do the redirect.


document.location.href = redirectUrl;


-- bruce (sqlwork.com)
 
O

omer013

Is there any way to redirect the page on the server side?

bruce barker said:
you can not redirect the client from a web method. the redirect only
redirects the method call. your web method should return the redirect url,
and javascript can do the redirect.


document.location.href = redirectUrl;


-- bruce (sqlwork.com)


omer013 said:
Hi;
I have an aspx page with a WebMethod to redirect the user to another page.
The Default.aspx.cs is;

public partial class _Default : System.Web.UI.Page
{
[WebMethod]
public static void redirect_user()
{
HttpContext.Current.Response.Redirect("home.aspx");
}
}

and Default.aspx file;

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">

<script type="text/javascript">

function Button1_onclick()
{
PageMethods.redirect_user(redirectSuccess, redirectError);
}

function redirectSuccess(result)
{
alert(result);
}

function redirectError(error)
{
alert(error.get_message());
}

</script>

<asp:ScriptManager ID="ScriptManager1" runat="server"
EnablePageMethods="True" >
</asp:ScriptManager>
<div>
<input id="Button1" type="button" value="button" onclick="return
Button1_onclick()" />
</div>
</form>
</body>
</html>

When i use HttpContext.Current.Response.Redirect("home.aspx"); i have the
"Thread was being aborted" error. And if i use the
HttpContext.Current.Response.Redirect("home.aspx", false); overload i have
the "Authentication failed" error. So how can i redirect from a webmethod?
 
O

omer013

Is there any way to redirect on the server side?

bruce barker said:
you can not redirect the client from a web method. the redirect only
redirects the method call. your web method should return the redirect url,
and javascript can do the redirect.


document.location.href = redirectUrl;


-- bruce (sqlwork.com)


omer013 said:
Hi;
I have an aspx page with a WebMethod to redirect the user to another page.
The Default.aspx.cs is;

public partial class _Default : System.Web.UI.Page
{
[WebMethod]
public static void redirect_user()
{
HttpContext.Current.Response.Redirect("home.aspx");
}
}

and Default.aspx file;

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">

<script type="text/javascript">

function Button1_onclick()
{
PageMethods.redirect_user(redirectSuccess, redirectError);
}

function redirectSuccess(result)
{
alert(result);
}

function redirectError(error)
{
alert(error.get_message());
}

</script>

<asp:ScriptManager ID="ScriptManager1" runat="server"
EnablePageMethods="True" >
</asp:ScriptManager>
<div>
<input id="Button1" type="button" value="button" onclick="return
Button1_onclick()" />
</div>
</form>
</body>
</html>

When i use HttpContext.Current.Response.Redirect("home.aspx"); i have the
"Thread was being aborted" error. And if i use the
HttpContext.Current.Response.Redirect("home.aspx", false); overload i have
the "Authentication failed" error. So how can i redirect from a webmethod?
 
V

Ven

Hi,

Have you got the answer ? am also in same place, i want to redirect to
another from webmethod...

omer013 said:
Is there any way to redirect on the server side?

bruce barker said:
you can not redirect the client from a web method. the redirect only
redirects the method call. your web method should return the redirect url,
and javascript can do the redirect.


document.location.href = redirectUrl;


-- bruce (sqlwork.com)


omer013 said:
Hi;
I have an aspx page with a WebMethod to redirect the user to another page.
The Default.aspx.cs is;

public partial class _Default : System.Web.UI.Page
{
[WebMethod]
public static void redirect_user()
{
HttpContext.Current.Response.Redirect("home.aspx");
}
}

and Default.aspx file;

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">

<script type="text/javascript">

function Button1_onclick()
{
PageMethods.redirect_user(redirectSuccess, redirectError);
}

function redirectSuccess(result)
{
alert(result);
}

function redirectError(error)
{
alert(error.get_message());
}

</script>

<asp:ScriptManager ID="ScriptManager1" runat="server"
EnablePageMethods="True" >
</asp:ScriptManager>
<div>
<input id="Button1" type="button" value="button" onclick="return
Button1_onclick()" />
</div>
</form>
</body>
</html>

When i use HttpContext.Current.Response.Redirect("home.aspx"); i have the
"Thread was being aborted" error. And if i use the
HttpContext.Current.Response.Redirect("home.aspx", false); overload i have
the "Authentication failed" error. So how can i redirect from a webmethod?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,576
Members
45,054
Latest member
LucyCarper

Latest Threads

Top