Hi. My code is with problem in this line:
Permissao = ((Permissoes)(int.Parse(System.Convert.ToString(leitor["permissao"].ToString())))); This line is in this class:
using System.Web.UI; using System.Web.UI.WebControls; using Admin.Clases; using Admin.Classes; namespace Teach { public partial class UCNavigation : System.Web.UI.UserControl { public enum Permissoes { Administrador = 1, Concedente = 2, Convenente = 3, Gestor = 4, Interveniente = 5, } public Usuario usuario { get { return HttpContext.Current.Session["Usuario"] as Usuario; } set { HttpContext.Current.Session["Usuario"] = value; ...

Go to the complete details ...