AdminFolder.aspx.cs :  » CRM-ERP » Tustena-CRM » Digita » Tustena » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » CRM ERP » Tustena CRM 
Tustena CRM » Digita » Tustena » AdminFolder.aspx.cs
/// <license>TUSTENA PUBLIC LICENSE v1.0</license>
/// <copyright>
/// Portions Copyright (c) 2003-2006 Digita S.r.l. All Rights Reserved.
///
/// Tustena CRM is a trademark of:
/// Digita S.r.l.
/// Viale Enrico Fermi 14/z
/// 31011 Asolo (Italy)
/// Tel. +39-0423-951251
/// Mail. info@digita.it
///
/// This file contains Original Code and/or Modifications of Original Code
/// as defined in and that are subject to the Tustena Public Source License
/// Version 1.0 (the 'License'). You may not use this file except in
/// compliance with the License. Please obtain a copy of the License at
/// http://www.tustena.com/TPL/ and read it before using this
// file.
///
/// The Original Code and all software distributed under the License are
/// distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
/// EXPRESS OR IMPLIED, AND DIGITA S.R.L. HEREBY DISCLAIMS ALL SUCH WARRANTIES,
/// INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
/// Please see the License for the specific language governing rights and
/// limitations under the License.
///
/// YOU MAY NOT REMOVE OR ALTER THIS COPYRIGHT NOTICE!
/// </copyright>

using System;
using System.Data;
using System.Web.UI.WebControls;
using Digita.Tustena.Core;
using Digita.Tustena.Database;
using Microsoft.Web.UI.WebControls;
using TreeViewMicrosoft.Web.UI.WebControls.TreeView;
using TreeNodeMicrosoft.Web.UI.WebControls.TreeNode;

namespace Digita.Tustena{
  public partial class AdminFolder : G
  {

    protected void Page_Load(object sender, EventArgs e)
    {
      if (!Login())
      {
        Response.Redirect("/login.aspx");
      }
      else
      {
        if (!Page.IsPostBack)
        {
          AddCategories.Text =Root.rm.GetString("Cattxt2");
          ModCategories.Text =Root.rm.GetString("Cattxt6");
          DelCategories.Text =Root.rm.GetString("Cattxt10");
          CreaTree(tvCategoryTree, 0);
          DropParent.DataTextField = "Description";
          DropParent.DataValueField = "id";
          DropParent.DataSource = DatabaseConnection.CreateDataset("SELECT ID,DESCRIPTION FROM FILESCATEGORIES ORDER BY PARENTID").Tables[0];
          DropParent.DataBind();
          DropParent.Items.Insert(0, new ListItem(Root.rm.GetString("Cattxt5"), "0"));

        }

      }
    }

    public void CreaTree(TreeView tree, int open)
    {
string queryCat;
queryCat = "SELECT * FROM FILESCATEGORIES WHERE PARENTID = 0";
      DataSet dsC = DatabaseConnection.CreateDataset(queryCat);

      TreeNode tv1 = new TreeNode();

      tv1.Text = "<a href=\"javascript:copyData('', '','0',1)\" style=\"color:black;text-decoration:none\">" +Root.rm.GetString("Dsttxt21") + "</a>";

      tree.Nodes.Add(tv1);

      foreach (DataRow dr in dsC.Tables[0].Rows)
      {
        TreeNode tv = new TreeNode();
        string del = "0";
        if (Convert.ToInt32(DatabaseConnection.SqlScalar("SELECT COUNT(*) FROM FILESCATEGORIES WHERE PARENTID=" + dr["Id"].ToString())) > 0)
          del = "1";
        else if (Convert.ToInt32(DatabaseConnection.SqlScalar("SELECT COUNT(*) FROM FILEMANAGER WHERE TYPE=" + dr["Id"].ToString())) > 0)
          del = "1";

        tv.Text = "<a href=\"javascript:copyData('" + dr["Id"].ToString() + "', '" + dr["Description"].ToString() + "','" + dr["ParentID"].ToString() + "'," + del + ")\" style=\"color:black;text-decoration:none\">" + dr["Description"].ToString() + "</a>";
        tv.NodeData = dr["Id"].ToString();

        tv.Expanded = FillCategoryTree(Convert.ToInt32(dr["Id"]), tv, open); // Chiamata ricorsiva per fare le foglie
        tv.ImageUrl = "/webctrl_client/1_0/treeimages/folder.gif";
        tv.ExpandedImageUrl = "/webctrl_client/1_0/treeimages/folderopen.gif";
        tree.Nodes.Add(tv);
      }
      tree.CssClass = "normal";

    }

    public bool FillCategoryTree(int parent, TreeNode tvUp, int open)
    {
string queryCat;
queryCat = "SELECT * FROM FILESCATEGORIES WHERE PARENTID = " + parent;
      DataSet dsC = DatabaseConnection.CreateDataset(queryCat);
      bool toExpand = false;
      foreach (DataRow dr in dsC.Tables[0].Rows)
      {
        TreeNode tv = new TreeNode();

        string del = "0";
        if (Convert.ToInt32(DatabaseConnection.SqlScalar("SELECT COUNT(*) FROM FILESCATEGORIES WHERE PARENTID=" + dr["Id"].ToString())) > 0)
          del = "1";
        else if (Convert.ToInt32(DatabaseConnection.SqlScalar("SELECT COUNT(*) FROM FILEMANAGER WHERE TYPE=" + dr["Id"].ToString())) > 0)
          del = "1";

        tv.Text = "<a href=\"javascript:copyData('" + dr["Id"].ToString() + "', '" + dr["Description"].ToString() + "','" + dr["ParentID"].ToString() + "'," + del + ")\" style=\"color:black;text-decoration:none\">" + dr["Description"].ToString() + "</a>";
        tv.NodeData = dr["Id"].ToString();
        if (!toExpand)
          toExpand = (open == Convert.ToInt32(dr["id"]));
        tv.Expanded = FillCategoryTree(Convert.ToInt32(dr["Id"]), tv, open); // Chiamata ricorsiva per fare le foglie
        tv.ImageUrl = "/webctrl_client/1_0/treeimages/folder.gif";
        tv.ExpandedImageUrl = "/webctrl_client/1_0/treeimages/folderopen.gif";
        if (tv.Expanded) toExpand = true;
        tvUp.Nodes.Add(tv);
      }
      return toExpand;
    }

    #region Codice generato da Progettazione Web Form

    protected override void OnInit(EventArgs e)
    {
      InitializeComponent();
      base.OnInit(e);
    }

    private void InitializeComponent()
    {
      this.Load += new EventHandler(this.Page_Load);
      this.AddCategories.Click += new EventHandler(AddCategories_Click);
      this.ModCategories.Click += new EventHandler(ModCategories_Click);
      this.DelCategories.Click += new EventHandler(DelCategories_Click);
    }

    #endregion

    private void AddCategories_Click(object sender, EventArgs e)
    {
      if (! ExistCategory(DatabaseConnection.FilterInjection(TxtTextCategory.Text))) // Inserisco se la categoria non esiste
      {
        int idCat = InsertRenameCategory(TxtTextCategory.Text, Convert.ToInt32(DropParent.SelectedValue), -1);

        tvCategoryTree.Nodes.Clear();
        CreaTree(tvCategoryTree, idCat); // Ricostruisco l'albero aggiornato
      }
      else
        LblMessage.Text =Root.rm.GetString("Cattxt7"); // La categoria esiste gi

    }

    private void ModCategories_Click(object sender, EventArgs e)
    {
      if(TxtTextCategory.Text.Length>0)
      {
        int idCat = InsertRenameCategory(TxtTextCategory.Text, Convert.ToInt32(DropParent.SelectedValue), Convert.ToInt32(TxtIdCategory.Text));

        tvCategoryTree.Nodes.Clear();
        CreaTree(tvCategoryTree, idCat); // Ricostruisco l'albero aggiornato
      }
      else
      {
        LblMessage.Text =Root.rm.GetString("Cattxt9"); // Manca il TextFont
      }
    }

    public bool ExistCategory(string category)
    {
      string queryCat = "SELECT DESCRIPTION FROM FILESCATEGORIES WHERE (DESCRIPTION = '" + category + "')";
      DataSet dsCat = DatabaseConnection.CreateDataset(queryCat);

      if (dsCat.Tables[0].Rows.Count > 0)
        return true; // Il nome della categoria esiste gi
      else
        return false; // Il nome della categoria non esiste ancora
    }

    private int InsertRenameCategory(string newCategory, int parent, int id)
    {
      if ((newCategory != null && newCategory.Length != 0))
      {
        using (DigiDapter dg = new DigiDapter())
        {
          dg.Add("DESCRIPTION", newCategory);
          dg.Add("PARENTID", parent);
          object newId = dg.Execute("FILESCATEGORIES", "ID=" + id, DigiDapter.Identities.Identity);

          LblMessage.Text =Root.rm.GetString("Cattxt8"); // Aggiornamento eseguito con successo

          if (id == -1)
            return Convert.ToInt32(newId.ToString());
          else
            return id;
        }
      }
      else
      {
        LblMessage.Text =Root.rm.GetString("Cattxt9"); // Manca il TextFont
        return -1;
      }
    }

    private void DelCategories_Click(object sender, EventArgs e)
    {
      DatabaseConnection.DoCommand("DELETE FROM FILESCATEGORIES WHERE ID=" + int.Parse(TxtIdCategory.Text));
      TxtIdCategory.Text = String.Empty;
      TxtTextCategory.Text = String.Empty;
      tvCategoryTree.Nodes.Clear();
      CreaTree(tvCategoryTree, 0);
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.