I try to redirect user after edit a list to another page in site. So I write this code at the end of my item_updated list handler
Response.Redirect("http://www.somewhere.com");
I pretty sure that this line of code is executed when I debug this handler but the page not redirect to page which I expect.
Is this the correct way to redirect page in Sharepoint?