0
That’s the mistake you’re making:
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.
And that’s the full call code on my master.
protected void lkbConsultarProcessos_Click(object sender, EventArgs e)
{
try
{
Response.Redirect("/frmPVListaProcessos.aspx");
}
catch (Exception Ex)
{
wucMasterMensagens.ExibirMensagem(WUC.wucMensagens.TipoAlerta.Erro, Ex.Source, Ex.Message, Ex.StackTrace);
}
}
The error gave no more, but the requested page is not loaded. This I will see what is happening.
– pnet