0
i am trying to make a server transfer to my master page but this to give this error:
No HTTP processor found for the 'POST' request type Description: Unprocessed exception when executing the current web request. See stack tracking for more information about the error and its source point in the code.
the code I have and on the aspx page:
Context.Items["id"] = c.idCliente;
Server.Transfer("~/MasterPage.master");
master page:
int id = Convert.ToInt32(Context.Items["id"]);
Managed to solve?
– Leandro Angelo