实例介绍
c#中调用 fastReport报表 的代码
【实例截图】
【核心代码】
FastReport报表代码.rar
└── Date
└── dateQuery
├── BLL
│ ├── bin
│ │ └── Debug
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── MySql.Data.dll
│ │ ├── OpenSmtp.dll
│ │ ├── System.Data.SQLite.dll
│ │ ├── ZLJY.QueryDate.BLL.dll
│ │ ├── ZLJY.QueryDate.BLL.pdb
│ │ ├── ZLJY.QueryDate.Common.dll
│ │ ├── ZLJY.QueryDate.Common.pdb
│ │ ├── ZLJY.QueryDate.DAL.dll
│ │ ├── ZLJY.QueryDate.DAL.pdb
│ │ ├── ZLJY.QueryDate.DBUtility.dll
│ │ ├── ZLJY.QueryDate.DBUtility.pdb
│ │ ├── ZLJY.QueryDate.Model.dll
│ │ └── ZLJY.QueryDate.Model.pdb
│ ├── BLL.csproj
│ ├── BLL.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── ZLJY.QueryDate.BLL.dll
│ │ └── ZLJY.QueryDate.BLL.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QueryDate
│ │ └── worker.cs
│ └── SysManage.cs
├── Common
│ ├── Assistant.cs
│ ├── bin
│ │ └── Debug
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── OpenSmtp.dll
│ │ ├── OWC10Chart.dll
│ │ ├── ZLJY.QueryDate.Common.dll
│ │ └── ZLJY.QueryDate.Common.pdb
│ ├── ChartHelper.cs
│ ├── Common.csproj
│ ├── Common.csproj.user
│ ├── ConfigHelper.cs
│ ├── DataCache.cs
│ ├── DataToExcel.cs
│ ├── dateQuery.suo
│ ├── DEncrypt
│ │ ├── DEncrypt.cs
│ │ ├── DESEncrypt.cs
│ │ ├── HashEncode.cs
│ │ ├── RSACryption.cs
│ │ └── vssver2.scc
│ ├── HttpProc.cs
│ ├── INIFile.cs
│ ├── MailSender.cs
│ ├── MessageBox.cs
│ ├── obj
│ │ └── Debug
│ │ ├── Common.csproj.FileListAbsolute.txt
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── ZLJY.QueryDate.Common.dll
│ │ └── ZLJY.QueryDate.Common.pdb
│ ├── PageBase.cs
│ ├── PageValidate.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RMB.cs
│ ├── StringPlus.cs
│ ├── TimeParser.cs
│ ├── UrlOper.cs
│ └── vssver2.scc
├── DAL
│ ├── bin
│ │ └── Debug
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── MySql.Data.dll
│ │ ├── OpenSmtp.dll
│ │ ├── System.Data.SQLite.dll
│ │ ├── ZLJY.QueryDate.Common.dll
│ │ ├── ZLJY.QueryDate.Common.pdb
│ │ ├── ZLJY.QueryDate.DAL.dll
│ │ ├── ZLJY.QueryDate.DAL.pdb
│ │ ├── ZLJY.QueryDate.DBUtility.dll
│ │ ├── ZLJY.QueryDate.DBUtility.pdb
│ │ ├── ZLJY.QueryDate.Model.dll
│ │ └── ZLJY.QueryDate.Model.pdb
│ ├── DAL.csproj
│ ├── DAL.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── ZLJY.QueryDate.DAL.dll
│ │ └── ZLJY.QueryDate.DAL.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QueryDate
│ │ └── worker.cs
│ └── SysManage.cs
├── dateQuery.sln
├── dateQuery.suo
├── DBUtility
│ ├── BaseSqlMapDao.cs
│ ├── bin
│ │ └── Debug
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── MySql.Data.dll
│ │ ├── System.Data.SQLite.DLL
│ │ ├── ZLJY.QueryDate.DBUtility.dll
│ │ └── ZLJY.QueryDate.DBUtility.pdb
│ ├── CommandInfo.cs
│ ├── dateQuery.suo
│ ├── DbHelperMySQL.cs
│ ├── DbHelperOleDb.cs
│ ├── DbHelperOra.cs
│ ├── DbHelperSQL2.cs
│ ├── DbHelperSQL.cs
│ ├── DbHelperSQLite.cs
│ ├── DbHelperSQLP.cs
│ ├── DBUtility.csproj
│ ├── DBUtility.csproj.user
│ ├── DESEncrypt.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DBUtility.csproj.FileListAbsolute.txt
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── ZLJY.QueryDate.DBUtility.dll
│ │ └── ZLJY.QueryDate.DBUtility.pdb
│ ├── OracleHelper.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── PubConstant.cs
│ └── SQLHelper.cs
├── Lib
│ ├── COM.Excel.dll
│ ├── Excel.dll
│ ├── IBatisNet.Common.dll
│ ├── IBatisNet.DataMapper.dll
│ ├── LTP.Accounts.dll
│ ├── LTP.Accounts.txt
│ ├── LtpPageControl.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll
│ ├── Microsoft.Web.UI.WebControls.dll
│ ├── MySql.Data.dll
│ ├── OpenSmtp.dll
│ ├── OWC10Chart.dll
│ ├── System.Data.SQLite.DLL
│ └── System.Data.SQLite.lib
├── Model
│ ├── bin
│ │ └── Debug
│ │ ├── ZLJY.QueryDate.Model.dll
│ │ └── ZLJY.QueryDate.Model.pdb
│ ├── Model.csproj
│ ├── Model.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ ├── TempPE
│ │ ├── ZLJY.QueryDate.Model.dll
│ │ └── ZLJY.QueryDate.Model.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QueryDate
│ │ └── worker.cs
│ └── SysNode.cs
└── Web
├── Admin
│ ├── Accounts
│ │ ├── add.aspx
│ │ ├── Add.aspx.cs
│ │ ├── Add.aspx.designer.cs
│ │ ├── Add.aspx.resx
│ │ ├── Admin
│ │ │ ├── editrole.aspx
│ │ │ ├── EditRole.aspx.cs
│ │ │ ├── EditRole.aspx.designer.cs
│ │ │ ├── EditRole.aspx.resx
│ │ │ ├── index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ ├── Index.aspx.designer.cs
│ │ │ ├── Index.aspx.resx
│ │ │ ├── permissionadmin.aspx
│ │ │ ├── PermissionAdmin.aspx.cs
│ │ │ ├── PermissionAdmin.aspx.designer.cs
│ │ │ ├── PermissionAdmin.aspx.resx
│ │ │ ├── RoleAdmin.aspx
│ │ │ ├── RoleAdmin.aspx.cs
│ │ │ ├── RoleAdmin.aspx.designer.cs
│ │ │ ├── RoleAdmin.aspx.resx
│ │ │ ├── roleassignment.aspx
│ │ │ ├── RoleAssignment.aspx.cs
│ │ │ ├── RoleAssignment.aspx.designer.cs
│ │ │ ├── RoleAssignment.aspx.resx
│ │ │ ├── UserAdmin.aspx
│ │ │ ├── UserAdmin.aspx.cs
│ │ │ ├── UserAdmin.aspx.designer.cs
│ │ │ ├── UserAdmin.aspx.resx
│ │ │ ├── UserAdminList.aspx
│ │ │ ├── UserAdminList.aspx.cs
│ │ │ ├── UserAdminList.aspx.designer.cs
│ │ │ ├── UserAssignmentRole.aspx
│ │ │ ├── UserAssignmentRole.aspx.cs
│ │ │ ├── UserAssignmentRole.aspx.designer.cs
│ │ │ ├── UserRoleAssignment.aspx
│ │ │ ├── UserRoleAssignment.aspx.cs
│ │ │ ├── UserRoleAssignment.aspx.designer.cs
│ │ │ ├── UserType.aspx
│ │ │ ├── UserType.aspx.cs
│ │ │ └── UserType.aspx.designer.cs
│ │ ├── images
│ │ │ ├── adminLeftArrow.gif
│ │ │ ├── admin_top_bg.gif
│ │ │ ├── bg1.gif
│ │ │ ├── bg2.gif
│ │ │ ├── bg3.gif
│ │ │ ├── bg.gif
│ │ │ ├── bottombg.gif
│ │ │ ├── btnreview.GIF
│ │ │ ├── button_add.gif
│ │ │ ├── button_back.gif
│ │ │ ├── button_cancel.gif
│ │ │ ├── button_close.gif
│ │ │ ├── button_del.gif
│ │ │ ├── button_edit.gif
│ │ │ ├── button-join.gif
│ │ │ ├── button-login.gif
│ │ │ ├── button_look.gif
│ │ │ ├── button_ok.gif
│ │ │ ├── button_save.gif
│ │ │ ├── button_search.GIF
│ │ │ ├── button_sift.gif
│ │ │ ├── button_update.gif
│ │ │ ├── lan12.gif
│ │ │ ├── lan1.gif
│ │ │ ├── loading.gif
│ │ │ ├── navspacer.gif
│ │ │ ├── skin2
│ │ │ │ ├── downbg.gif
│ │ │ │ └── topbar_01.jpg
│ │ │ └── topbg.gif
│ │ ├── setpass.aspx
│ │ ├── SetPass.aspx.cs
│ │ ├── SetPass.aspx.designer.cs
│ │ ├── style
│ │ │ ├── css.css
│ │ │ └── style.css
│ │ ├── userinfo.aspx
│ │ ├── userinfo.aspx.cs
│ │ ├── userinfo.aspx.designer.cs
│ │ ├── userinfo.aspx.resx
│ │ ├── usermodify.aspx
│ │ ├── usermodify.aspx.cs
│ │ ├── usermodify.aspx.designer.cs
│ │ ├── usermodify.aspx.resx
│ │ ├── userpass.aspx
│ │ ├── userPass.aspx.cs
│ │ ├── userPass.aspx.designer.cs
│ │ ├── userPass.aspx.resx
│ │ ├── userupdate.aspx
│ │ ├── userupdate.aspx.cs
│ │ ├── userupdate.aspx.designer.cs
│ │ └── userupdate.aspx.resx
│ ├── Images
│ │ ├── about16.gif
│ │ ├── add16.gif
│ │ ├── a_te01.gif
│ │ ├── a_te02.gif
│ │ ├── b11-1.gif
│ │ ├── b11-2.gif
│ │ ├── b11.gif
│ │ ├── b12.gif
│ │ ├── b13-1.gif
│ │ ├── b13-2.gif
│ │ ├── b13.gif
│ │ ├── b1.gif
│ │ ├── b3.gif
│ │ ├── b4.gif
│ │ ├── b5.gif
│ │ ├── bar_00.gif
│ │ ├── bar_01.gif
│ │ ├── bar_02.gif
│ │ ├── bar_03.gif
│ │ ├── bar_04.gif
│ │ ├── bar_05.gif
│ │ ├── bar_06.gif
│ │ ├── bar_07.gif
│ │ ├── bar_08.gif
│ │ ├── bar_10.gif
│ │ ├── bg_01.gif
│ │ ├── bg_02.gif
│ │ ├── bg_03.gif
│ │ ├── bg.gif
│ │ ├── bgx.GIF
│ │ ├── blank.gif
│ │ ├── bottom_01.gif
│ │ ├── bottom_02.gif
│ │ ├── bottom_03.gif
│ │ ├── Briefcase16.gif
│ │ ├── Briefcase32.gif
│ │ ├── button_edit.gif
│ │ ├── button_search.GIF
│ │ ├── c6.gif
│ │ ├── card16.gif
│ │ ├── card32.gif
│ │ ├── company16.gif
│ │ ├── css.css
│ │ ├── d2.gif
│ │ ├── d3.gif
│ │ ├── desktop_01.gif
│ │ ├── desktop_02.gif
│ │ ├── desktop_03.gif
│ │ ├── desktop16.gif
│ │ ├── desktop32.gif
│ │ ├── dsj16.gif
│ │ ├── dsj32.gif
│ │ ├── f3.gif
│ │ ├── f4.gif
│ │ ├── find16.gif
│ │ ├── find32.gif
│ │ ├── folder16.gif
│ │ ├── folder32.gif
│ │ ├── foldergreen_16.gif
│ │ ├── ger16.gif
│ │ ├── ger32.gif
│ │ ├── gongg16.gif
│ │ ├── gongg32.gif
│ │ ├── gongzkp16.gif
│ │ ├── gongzkp32.gif
│ │ ├── help16.gif
│ │ ├── help32.gif
│ │ ├── image.gif
│ │ ├── in_bg.gif
│ │ ├── left-1-1.gif
│ │ ├── left-1-2.gif
│ │ ├── left-1-3.gif
│ │ ├── left-1.gif
│ │ ├── left-2-1.gif
│ │ ├── left-2-2.gif
│ │ ├── left-2-3.gif
│ │ ├── left-2.gif
│ │ ├── left-3-1.gif
│ │ ├── left-3-2.gif
│ │ ├── left-3-3.gif
│ │ ├── left-3.gif
│ │ ├── left-bj-1.gif
│ │ ├── left-bj-2.gif
│ │ ├── left-bj-3.gif
│ │ ├── left-bj.gif
│ │ ├── Loading.gif
│ │ ├── login.css
│ │ ├── login_p_img02.gif
│ │ ├── login_p_img03.gif
│ │ ├── login_p_img04.gif
│ │ ├── login_p_img05.gif
│ │ ├── login_p_img11.gif
│ │ ├── mag16.gif
│ │ ├── mail16.gif
│ │ ├── main_01.gif
│ │ ├── main_04.gif
│ │ ├── main_05.gif
│ │ ├── main_06.gif
│ │ ├── main_08.gif
│ │ ├── main_09.gif
│ │ ├── member_t04.JPG
│ │ ├── MenuImg
│ │ │ ├── 288.GIF
│ │ │ ├── about16.gif
│ │ │ ├── bbs16.gif
│ │ │ ├── find16.gif
│ │ │ ├── folder16.gif
│ │ │ ├── foldergreen_16.gif
│ │ │ ├── ger16.gif
│ │ │ ├── help16.gif
│ │ │ ├── news16.gif
│ │ │ ├── out16.gif
│ │ │ ├── Programs16.gif
│ │ │ ├── quanx16.gif
│ │ │ ├── thumbnails.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── times.gif
│ │ │ ├── ts16.gif
│ │ │ ├── user16.gif
│ │ │ ├── xinx16.gif
│ │ │ ├── zhut16.gif
│ │ │ └── zjsp16.gif
│ │ ├── message16.gif
│ │ ├── module16.gif
│ │ ├── module32.gif
│ │ ├── more1.gif
│ │ ├── myfile16.gif
│ │ ├── myfile32.gif
│ │ ├── news16.gif
│ │ ├── onecard16.gif
│ │ ├── onecard32.gif
│ │ ├── out16.gif
│ │ ├── out32.gif
│ │ ├── plan16.gif
│ │ ├── plan32.gif
│ │ ├── point07.gif
│ │ ├── quanx16.gif
│ │ ├── quanx32.gif
│ │ ├── right-bj-1.gif
│ │ ├── right-bj-2.gif
│ │ ├── right-bj-3.gif
│ │ ├── right-bj.gif
│ │ ├── spacer.gif
│ │ ├── style.css
│ │ ├── Thumbs.db
│ │ ├── top-1-1.gif
│ │ ├── top-1-2.gif
│ │ ├── top-1-3.gif
│ │ ├── top-1.gif
│ │ ├── top-2-1.gif
│ │ ├── top-2-2.gif
│ │ ├── top-2-3.gif
│ │ ├── top-2.gif
│ │ ├── top-3-1.gif
│ │ ├── top-3-2.gif
│ │ ├── top-3-3.gif
│ │ ├── top-3.gif
│ │ ├── top-4-1.gif
│ │ ├── top-4-2.gif
│ │ ├── top-4-3.gif
│ │ ├── top-4.gif
│ │ ├── top-5-1.gif
│ │ ├── top-5-2.gif
│ │ ├── top-5-3.gif
│ │ ├── top-5.gif
│ │ ├── topbar_01.jpg
│ │ ├── topbar_02.jpg
│ │ ├── topbar_03.jpg
│ │ ├── top-bj-1.gif
│ │ ├── top-bj-2.gif
│ │ ├── top-bj-3.gif
│ │ ├── top-bj.gif
│ │ ├── tubiao_01.GIF
│ │ ├── tubiao_02.gif
│ │ ├── user16.gif
│ │ ├── vote16.gif
│ │ ├── x16.gif
│ │ ├── xinx16.gif
│ │ ├── xinx32.gif
│ │ ├── yw16.gif
│ │ ├── zhut16.gif
│ │ └── zjsp16.gif
│ ├── Left.aspx
│ ├── Left.aspx.cs
│ ├── Left.aspx.designer.cs
│ ├── Left.aspx.resx
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── Login.aspx.designer.cs
│ ├── Logout.aspx
│ ├── Logout.aspx.cs
│ ├── Logout.aspx.designer.cs
│ ├── Logout.aspx.resx
│ ├── Main.aspx
│ ├── Main.aspx.cs
│ ├── Main.aspx.designer.cs
│ ├── Main.aspx.resx
│ ├── Main.htm
│ ├── Relogin.aspx
│ ├── Relogin.aspx.cs
│ ├── Relogin.aspx.designer.cs
│ ├── Relogin.aspx.resx
│ ├── ShowCallBoard.aspx
│ ├── ShowCallBoard.aspx.cs
│ ├── ShowCallBoard.aspx.designer.cs
│ ├── ShowCallBoard.aspx.resx
│ ├── Spliter.aspx
│ ├── Spliter.aspx.cs
│ ├── Spliter.aspx.designer.cs
│ ├── Spliter.aspx.resx
│ ├── Style.css
│ ├── SysManage
│ │ ├── add.aspx
│ │ ├── add.aspx.cs
│ │ ├── add.aspx.designer.cs
│ │ ├── add.aspx.resx
│ │ ├── CheckBox.js
│ │ ├── delete.aspx
│ │ ├── delete.aspx.cs
│ │ ├── delete.aspx.designer.cs
│ │ ├── delete.aspx.resx
│ │ ├── IndexTree.aspx
│ │ ├── IndexTree.aspx.cs
│ │ ├── IndexTree.aspx.designer.cs
│ │ ├── logindex.aspx
│ │ ├── LogIndex.aspx.cs
│ │ ├── LogIndex.aspx.designer.cs
│ │ ├── LogIndex.aspx.resx
│ │ ├── logshow.aspx
│ │ ├── LogShow.aspx.cs
│ │ ├── LogShow.aspx.designer.cs
│ │ ├── LogShow.aspx.resx
│ │ ├── makesql.aspx
│ │ ├── makesql.aspx.cs
│ │ ├── makesql.aspx.designer.cs
│ │ ├── makesql.aspx.resx
│ │ ├── modify.aspx
│ │ ├── modify.aspx.cs
│ │ ├── modify.aspx.designer.cs
│ │ ├── modify.aspx.resx
│ │ ├── search.aspx
│ │ ├── search.aspx.cs
│ │ ├── search.aspx.designer.cs
│ │ ├── search.aspx.resx
│ │ ├── show.aspx
│ │ ├── show.aspx.cs
│ │ ├── show.aspx.designer.cs
│ │ ├── show.aspx.resx
│ │ ├── treelist.aspx
│ │ ├── treelist.aspx.cs
│ │ ├── treelist.aspx.designer.cs
│ │ └── treelist.aspx.resx
│ ├── toindex.aspx
│ ├── toindex.aspx.cs
│ ├── toindex.aspx.designer.cs
│ ├── toindex.aspx.resx
│ ├── Top.aspx
│ ├── Top.aspx.cs
│ ├── Top.aspx.designer.cs
│ └── Top.aspx.resx
├── bin
│ ├── COM.Excel.dll
│ ├── Excel.dll
│ ├── FastReport.dll
│ ├── IBatisNet.Common.dll
│ ├── IBatisNet.DataMapper.dll
│ ├── LTP.Accounts.dll
│ ├── LtpPageControl.dll
│ ├── Microsoft.Web.UI.WebControls.dll
│ ├── MySql.Data.dll
│ ├── OpenSmtp.dll
│ ├── OWC10Chart.dll
│ ├── System.Data.SQLite.dll
│ ├── System.Windows.Forms.DataVisualization.dll
│ ├── ZLJY.QueryDate.BLL.dll
│ ├── ZLJY.QueryDate.BLL.pdb
│ ├── ZLJY.QueryDate.Common.dll
│ ├── ZLJY.QueryDate.Common.pdb
│ ├── ZLJY.QueryDate.DAL.dll
│ ├── ZLJY.QueryDate.DAL.pdb
│ ├── ZLJY.QueryDate.DBUtility.dll
│ ├── ZLJY.QueryDate.DBUtility.pdb
│ ├── ZLJY.QueryDate.Model.dll
│ ├── ZLJY.QueryDate.Model.pdb
│ ├── ZLJY.QueryDate.Web.dll
│ └── ZLJY.QueryDate.Web.pdb
├── Components
├── Controls
│ ├── checkright.ascx
│ ├── checkright.ascx.cs
│ ├── checkright.ascx.designer.cs
│ ├── copyright.ascx
│ ├── CopyRight.ascx.cs
│ └── CopyRight.ascx.designer.cs
├── Default.aspx
├── Default.aspx.cs
├── Default.aspx.designer.cs
├── Global.asax
├── Global.asax.cs
├── Global.asax.resx
├── Images
│ └── Thumbs.db
├── js
│ ├── calendar1.js
│ ├── CheckBox.js
│ ├── chili-1.7.pack.js
│ ├── jquery-1.4.4.min.js
│ ├── jquery.accordion.js
│ ├── jquery.dimensions.js
│ ├── jquery.easing.js
│ ├── jquery.js
│ ├── js.js
│ └── WdatePicker.js
├── MasterPage.master
├── MasterPage.master.cs
├── MasterPage.master.designer.cs
├── My97DatePicker
│ ├── calendar.js
│ ├── config.js
│ ├── lang
│ │ ├── en.js
│ │ ├── vssver2.scc
│ │ ├── zh-cn.js
│ │ └── zh-tw.js
│ ├── My97DatePicker.htm
│ ├── skin
│ │ ├── datePicker.gif
│ │ ├── default
│ │ │ ├── datepicker.css
│ │ │ ├── img.gif
│ │ │ └── vssver2.scc
│ │ ├── vssver2.scc
│ │ ├── WdatePicker.css
│ │ └── whyGreen
│ │ ├── bg.jpg
│ │ ├── datepicker.css
│ │ ├── img.gif
│ │ └── vssver2.scc
│ └── WdatePicker.js
├── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GenerateResource.read.1.tlog
│ ├── GenerateResource.write.1.tlog
│ ├── Maticsoft.Web.Accounts.Add.resources
│ ├── Maticsoft.Web.Accounts.Admin.EditRole.resources
│ ├── Maticsoft.Web.Accounts.Admin.PermissionAdmin.resources
│ ├── Maticsoft.Web.Accounts.Admin.RoleAdmin.resources
│ ├── Maticsoft.Web.Accounts.Admin.RoleAssignment.resources
│ ├── Maticsoft.Web.Accounts.Admin.UserAdmin.resources
│ ├── Maticsoft.Web.Accounts.Index.resources
│ ├── Maticsoft.Web.Accounts.userinfo.resources
│ ├── Maticsoft.Web.Accounts.usermodify.resources
│ ├── Maticsoft.Web.Accounts.userPass.resources
│ ├── Maticsoft.Web.Accounts.userupdate.resources
│ ├── Maticsoft.Web.Admin.Left.resources
│ ├── Maticsoft.Web.Admin.Logout.resources
│ ├── Maticsoft.Web.Admin.Main.resources
│ ├── Maticsoft.Web.Admin.Relogin.resources
│ ├── Maticsoft.Web.Admin.ShowCallBoard.resources
│ ├── Maticsoft.Web.Admin.Spliter.resources
│ ├── Maticsoft.Web.Admin.toindex.resources
│ ├── Maticsoft.Web.Admin.Top.resources
│ ├── Maticsoft.Web.SysManage.add.resources
│ ├── Maticsoft.Web.SysManage.delete.resources
│ ├── Maticsoft.Web.SysManage.LogIndex.resources
│ ├── Maticsoft.Web.SysManage.LogShow.resources
│ ├── Maticsoft.Web.SysManage.makesql.resources
│ ├── Maticsoft.Web.SysManage.modify.resources
│ ├── Maticsoft.Web.SysManage.search.resources
│ ├── Maticsoft.Web.SysManage.show.resources
│ ├── Maticsoft.Web.SysManage.treelist.resources
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ ├── Web.csproj.FileListAbsolute.txt
│ ├── ZLJY.QueryDate.Web.dll
│ ├── ZLJY.QueryDate.Web.Global.resources
│ └── ZLJY.QueryDate.Web.pdb
├── Properties
│ └── AssemblyInfo.cs
├── QueryDate
│ └── worker
│ ├── Add.aspx
│ ├── Add.aspx.cs
│ ├── Add.aspx.designer.cs
│ ├── List.aspx
│ ├── List.aspx.cs
│ ├── List.aspx.designer.cs
│ ├── Modify.aspx
│ ├── Modify.aspx.cs
│ ├── Modify.aspx.designer.cs
│ ├── Query.aspx
│ ├── Query.aspx.cs
│ ├── Query.aspx.designer.cs
│ ├── Show.aspx
│ ├── Show.aspx.cs
│ ├── Show.aspx.designer.cs
│ └── WdatePicker.js
├── Report
│ └── rqcx.frx
├── Style.css
├── ValidateCode.aspx
├── ValidateCode.aspx.cs
├── ValidateCode.aspx.designer.cs
├── Web.config
├── Web.csproj
├── Web.csproj.user
└── webctrl_client
└── 1_0
├── Images
│ ├── folder.gif
│ ├── folderopen.gif
│ ├── html.gif
│ └── root.gif
├── MultiPage.htc
├── TabStrip.htc
├── toolbar.htc
├── TreeImages
│ ├── f.gif
│ ├── fminus.gif
│ ├── fplus.gif
│ ├── i.gif
│ ├── L.gif
│ ├── Lminus.gif
│ ├── Lplus.gif
│ ├── minus.gif
│ ├── plus.gif
│ ├── r.gif
│ ├── Rminus.gif
│ ├── Rplus.gif
│ ├── rtl
│ │ ├── F.gif
│ │ ├── Fminus.gif
│ │ ├── Fplus.gif
│ │ ├── I.gif
│ │ ├── L.gif
│ │ ├── Lminus.gif
│ │ ├── Lplus.gif
│ │ ├── minus.gif
│ │ ├── plus.gif
│ │ ├── r.gif
│ │ ├── Rminus.gif
│ │ ├── Rplus.gif
│ │ ├── T.gif
│ │ ├── Tminus.gif
│ │ ├── Tplus.gif
│ │ └── white.gif
│ ├── T.gif
│ ├── Tminus.gif
│ ├── Tplus.gif
│ └── white.gif
└── treeview.htc
74 directories, 660 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论