
Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
protected void Button1_Click(object sender, EventArgs e)
{
Server.Transfer("Language.aspx");
}
Cheers!
Claudi
Alexey Smirnov - 12 Sep 2007 09:45 GMT
> protected void Button1_Click(object sender, EventArgs e)
> {
[quoted text clipped - 6 lines]
>
> *** Sent via Developersdexhttp://www.developersdex.com***
Either use Response.Redirect, or try to set EnableViewStateMac to
false on Language.aspx
<%@Page EnableViewStateMac="false">
Mark Rae [MVP] - 12 Sep 2007 09:51 GMT
> Server.Transfer("Language.aspx");
What happens if you try:
Response.Redirect("Language.aspx", false);

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Claudia Fong - 12 Sep 2007 10:25 GMT
I put Response.Redirect("Language.aspx");
and it works
Cheers!
Claudi
Mark Rae [MVP] - 12 Sep 2007 10:32 GMT
> I put Response.Redirect("Language.aspx"); and it works
I would advise you to use Response.Redirect("Language.aspx", false) as I
suggested...
http://msdn2.microsoft.com/en-us/library/a8wa7sdt(vs.80).aspx

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net