This is the error you are giving:
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.
And this is the complete call code in 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);
}
}