资源简介
ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统.zip
代码片段和文件信息
#region 引用程序集
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Data;
using System.Configuration;
using System.Reflection;
using System.Web.UI.WebControls;
using System.Web;
using System.xml.XPath;
using System.xml;
using System.Text.Regularexpressions;
using AllPower.IDAL;
using AllPower.Model;
using AllPower.BLL.Template;
using AllPower.Template.ParamType;
#endregion
#region 版权注释
/*----------------------------------------------------------------------------------------
// Copyright (C) 2010 华强北在线
// 作者:吴岸标
// 创建日期:2011-1-11
// 功能描述:DW中调用接口
----------------------------------------------------------------------------------------*/
#endregion
namespace AllPower.BLL
{
public class DWAPI
{
#region 变量成员
private static string path = ConfigurationManager.AppSettings[“WebDAL“];
private IDAL.IDWAPI dal = (IDAL.IDWAPI)Assembly.Load(path).CreateInstance(path + “.DWAPI“);
#endregion
#region 获取站点栏目
public string GetMenuList(string siteID)
{
StringBuilder sbResult;
DataTable dt;
sbResult = new StringBuilder();
if (!string.IsNullOrEmpty(siteID))
{
dt = dal.GetMenuList(siteID);
if (dt != null && dt.Rows.Count > 0)
{
sbResult.Append(“[“);
TreeBind(ref sbResult dt dt.Rows[0][“ParentID“].ToString() string.Empty);
sbResult.Append(“]“);
}
}
if (sbResult.Length < 1)
{
sbResult.Append(“(null)“);
}
return sbResult.ToString();
}
#region 添加项
private void TreeBind(ref StringBuilder sbResult DataTable dataSource string parentID string parentPrevStr)
{
DataRow[] drNode;
DataRow[] drChildNode;
string currentPrevStr;
string nodetitle;
string nodeValue;
drNode = null;
drChildNode = null;
nodetitle = string.Empty;
nodeValue = string.Empty;
drNode = dataSource.Select(“ParentID=‘“ + parentID + “‘“);
currentPrevStr = parentPrevStr;
if (drNode != null)
{
foreach (DataRow dr in drNode)
{
nodeValue = dr[“ID“].ToString();
drChildNode = dataSource.Select(“ParentID=‘“ + dr[“ID“].ToString() + “‘“);
if (drChildNode.Length > 0)
{
nodetitle = currentPrevStr + “|-“ + dr[“Name“].ToString();
}
else
{
nodetitle = currentPrevStr + “∟“ + dr[“Name“].ToString();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-09-28 16:14 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\
目录 0 2016-11-17 15:53 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\
目录 0 2014-08-16 16:35 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\
文件 17903 2013-11-09 16:53 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\AllPower.BLL.csproj
文件 478 2013-11-08 21:28 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\AllPower.BLL.csproj.user
文件 79 2011-11-17 10:37 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\app.config
目录 0 2014-08-16 16:35 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\
目录 0 2015-01-22 15:56 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\
文件 453120 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.BLL.dll
文件 79 2011-11-17 10:37 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.BLL.dll.config
文件 1191424 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.BLL.pdb
文件 107520 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Common.dll
文件 314880 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Common.pdb
文件 26624 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Config.dll
文件 138752 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Config.pdb
文件 37376 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.IDAL.dll
文件 7680 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.IDAL.pdb
文件 205824 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Model.dll
文件 1302016 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Model.pdb
文件 370176 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.SQLServer.dll
文件 849408 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.SQLServer.pdb
文件 136192 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Template.dll
文件 372224 2015-02-14 16:57 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AllPower.Template.pdb
文件 114688 2011-11-17 10:36 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\AspNetPager.dll
文件 36864 2015-02-14 16:54 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\Interop.ADOX.dll
文件 950272 2011-11-17 10:37 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\Interop.SQLDMO.dll
文件 453120 2013-11-08 22:13 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\KingTop.BLL.dll
文件 79 2011-11-17 10:37 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\KingTop.BLL.dll.config
文件 111616 2013-11-08 22:12 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\KingTop.Common.dll
文件 26624 2013-11-08 22:13 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\KingTop.Config.dll
文件 37376 2013-11-08 22:13 ASP.NET C# 大型综合管理系统源码 大型ERP源码 全能后台管理系统\全能ERP管理系统源码(update)\AllPower.BLL\bin\Debug\KingTop.IDAL.dll
............此处省略6742个文件信息
- 上一篇:C#猜拳游戏
- 下一篇:WPF程序设计指南完整PDF高清版
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论