protected void SaveTelevision()
    {
        if (!txtTelevision.Text.Equals("") )
        {
            EntertainmentBO objEntertainment = new EntertainmentBO();

            objEntertainment.Name = txtTelevision.Text;
            objEntertainment.UserId = Userid;
            if (System.IO.File.Exists(Server.MapPath("../../Resources/images/ProfileIcons/" + txtTelevision.Text + ".jpg")))
                objEntertainment.Image = txtTelevision.Text + ".jpg";
            else if (System.IO.File.Exists(Server.MapPath("../../Resources/images/ProfileIcons/" + txtTelevision.Text + ".png")))
                objEntertainment.Image = txtTelevision.Text + ".png";
            else

            objEntertainment.Image = "DefaultTelevision.png";
            objEntertainment.Type = Global.TELEVISION;
            EntertainmentBLL.insertEntertainment(objEntertainment);
            txtTelevision.Text = "";
            LoadDataListTelevision();
        }
    }
    protected void SaveBooks()
    {
        if (!txtBooks.Text.Equals("") )
        {
            EntertainmentBO objEntertainment = new EntertainmentBO();

            objEntertainment.Name = txtBooks.Text;
            objEntertainment.UserId = Userid;
            if (System.IO.File.Exists(Server.MapPath("../../Resources/images/ProfileIcons/" + txtBooks.Text + Global.PICTURE_EXTENSION_JPG)))
                objEntertainment.Image = txtBooks.Text + ".jpg";
            else if (System.IO.File.Exists(Server.MapPath("../../Resources/images/ProfileIcons/" + txtBooks.Text + ".png")))
                objEntertainment.Image = txtBooks.Text + ".png";
            else

            objEntertainment.Image = "DefaultBooks.png";
            objEntertainment.Type = Global.BOOKS;
            EntertainmentBLL.insertEntertainment(objEntertainment);
            txtBooks.Text = "";
            LoadDataListBooks();
        }
    }