I'm trying to make a server transfer to my master page but it's giving this error:
No HTTP processor found for request type 'POST' Description: Unhandled exception while executing the current Web request. See the stack trace for more information about the error and its source point in the code.
The code that I have and in the aspx page:
Context.Items["id"] = c.idCliente;
Server.Transfer("~/MasterPage.master");
master page:
int id = Convert.ToInt32(Context.Items["id"]);