Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (Session["user"] == null)
     {
         Response.Redirect("loginForm.aspx");
     }
     else
     {
     }
     bd = new BD();
     bd.Connect();
 }
Ejemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["user"] == null)
            {
                Response.Redirect("loginForm.aspx");
            }
            else
            {
            }
            bd = new BD();
            bd.Connect();
            List <Categoria> categories = bd.GetCategorias();

            if (!Page.IsPostBack)
            {
                loadTreeView(categories, null);
            }
            if (Session["rutas"] != null)
            {
                initTaula((List <Ruta>)Session["rutas"]);
            }
        }
Ejemplo n.º 3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["user"] == null)
            {
                Response.Redirect("loginForm.aspx");
            }
            else if (Session["ruta"] == null)
            {
                Response.Redirect("user.aspx");
            }
            else
            {
            }
            bd = new BD();
            bd.Connect();
            Ruta ruta = (Ruta)Session["ruta"];

            List <Coment> coments = bd.GetComents(ruta.id);
            string        html    = "";

            foreach (Coment c in coments)
            {
                html += "<div>";
                html += "<h4>";
                html += c.nick = bd.GetNick(c.userID) + ":";
                html += "</h4>";
                html += "<p> ";
                html += c.comentarioTexto;
                html += "</p>";
                if (c.imgPath != "")
                {
                    html += "<img src='img/" + c.imgPath + "' alt='Not Found' style='width:200px; heigth:200px'/>";
                }
                html += "<br />";
                html += "</div>";
            }
            divComents.InnerHtml = html;
        }
Ejemplo n.º 4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     Session["ruta"] = null;
     bd = new BD();
     bd.Connect();
 }