【例子介绍】c#图片管理系统.rar
c#图片管理系统
c#图片管理系统
【相关图片】
【源码结构】
文件清单
└── 新建文件夹
├── PicManage
│ ├── Controls
│ │ └── Controls
│ │ ├── adduser.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Controls.dll
│ │ │ └── Controls.pdb
│ │ ├── Command.cs
│ │ ├── Controls.csproj
│ │ ├── Controls.csproj.user
│ │ ├── edit_pass.cs
│ │ ├── editpic.cs
│ │ ├── Globals.cs
│ │ ├── Login.cs
│ │ ├── logout.cs
│ │ ├── manager_edit.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── Controls.dll
│ │ │ ├── Controls.pdb
│ │ │ ├── Controls.projdata
│ │ │ ├── Controls.projdata1
│ │ │ ├── temp
│ │ │ └── TempPE
│ │ ├── search_view.cs
│ │ ├── SkinedWebControl.cs
│ │ ├── UpLoad.cs
│ │ ├── user_qx.cs
│ │ ├── viewpic.cs
│ │ └── yhlist.cs
│ └── PicManage
│ ├── addmanager.aspx
│ ├── addmanager.aspx.cs
│ ├── addmanager.aspx.resx
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ ├── Controls.dll
│ │ ├── Controls.pdb
│ │ ├── PicManage.dll
│ │ └── PicManage.pdb
│ ├── Control
│ │ ├── adduser.ascx
│ │ ├── adduser.ascx.cs
│ │ ├── adduser.ascx.resx
│ │ ├── edit_pass.ascx
│ │ ├── edit_pass.ascx.cs
│ │ ├── edit_pass.ascx.resx
│ │ ├── editpic.ascx
│ │ ├── editpic.ascx.cs
│ │ ├── editpic.ascx.resx
│ │ ├── Login.ascx
│ │ ├── Login.ascx.cs
│ │ ├── Login.ascx.resx
│ │ ├── Logout.ascx
│ │ ├── Logout.ascx.cs
│ │ ├── Logout.ascx.resx
│ │ ├── manager_edit.ascx
│ │ ├── manager_edit.ascx.cs
│ │ ├── manager_edit.ascx.resx
│ │ ├── search_view.ascx
│ │ ├── search_view.ascx.cs
│ │ ├── search_view.ascx.resx
│ │ ├── toolmain.ascx
│ │ ├── toolmain.ascx.cs
│ │ ├── toolmain.ascx.resx
│ │ ├── UpLoad.ascx
│ │ ├── UpLoad.ascx.cs
│ │ ├── UpLoad.ascx.resx
│ │ ├── user_qx.ascx
│ │ ├── user_qx.ascx.cs
│ │ ├── user_qx.ascx.resx
│ │ ├── viewpic.ascx
│ │ ├── viewpic.ascx.cs
│ │ ├── viewpic.ascx.resx
│ │ ├── yhlist.ascx
│ │ ├── yhlist.ascx.cs
│ │ └── yhlist.ascx.resx
│ ├── default.aspx
│ ├── default.aspx.cs
│ ├── default.aspx.resx
│ ├── editimage.aspx
│ ├── editimage.aspx.cs
│ ├── editimage.aspx.resx
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Global.asax.resx
│ ├── images
│ │ ├── back.gif
│ │ ├── bg88.gif
│ │ ├── ch.gif
│ │ ├── dlu.gif
│ │ ├── pic.gif
│ │ └── zhuxiao.gif
│ ├── lookpic.aspx
│ ├── lookpic.aspx.cs
│ ├── lookpic.aspx.resx
│ ├── pass_edit.aspx
│ ├── pass_edit.aspx.cs
│ ├── pass_edit.aspx.resx
│ ├── picall.aspx
│ ├── picall.aspx.cs
│ ├── picall.aspx.resx
│ ├── PicManage.csproj
│ ├── PicManage.csproj.webinfo
│ ├── PicManage.sln
│ ├── PicManage.suo
│ ├── search.aspx
│ ├── search.aspx.cs
│ ├── search.aspx.resx
│ ├── style.css
│ ├── UpLoad.aspx
│ ├── UpLoad.aspx.cs
│ ├── UpLoad.aspx.resx
│ ├── uploadfile
│ │ ├── NewPic
│ │ │ └── Thumbs.db
│ │ └── OldPic
│ │ └── Thumbs.db
│ ├── user_manage.aspx
│ ├── user_manage.aspx.cs
│ ├── user_manage.aspx.resx
│ ├── user_xx.aspx
│ ├── user_xx.aspx.cs
│ ├── user_xx.aspx.resx
│ ├── Web.config
│ ├── yh_quanxian.aspx
│ ├── yh_quanxian.aspx.cs
│ └── yh_quanxian.aspx.resx
├── picmanage.sql
└── 新建 文本文档.txt
17 directories, 116 files
评论