Another Update Panel problem ASP.NET

379 Views Asked by At

This is a branch off of my other question here

I am now able to add my javascript in asynchronously but it does not redirect my page properly.

Currently I use this to redirect my page

Response.AddHeader("Refresh", "1;URL=mypage.aspx")

The reason I use the Response.AddHeader is so that I can delay the redirect

Is there something different I need to do with this to make it add the header asynchronously?

1

There are 1 best solutions below

4
On BEST ANSWER

Have you tried redirecting with javascript?

setTimeout("window.location='mypage.aspx';", 1000);