• 大小: 8.07MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-10-09
  • 语言: C#
  • 标签: 源码  C#  ASP  .net  

资源简介

某企业订单管理系统源码 某布艺企业订单管理系统,主要业务范围为窗帘、壁纸等。 采用Asp.Net2.0+Sql2005,三层结构 主要功能如下: 销售管理 厂家管理 材料管理 查询统计 系统设置 其他说明

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;

namespace UART.Accounts
{
    /// 
    /// AccountsPage 需要验证角色和权限的页面基类
    /// 继承自Page类
    /// 

   


    public class AccountsPage : System.Web.UI.Page
    {
        public AccountsPage()
        { 
            //
            //在此处添加构造函数
            //
        }

        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            this.Load += new EventHandler(AccountsPage_Load);
        }



        //在页面加载的时候从缓存中提取用户信息
        private void AccountsPage_Load(object sender System.EventArgs e)
        {
            if (Context.User.Identity.IsAuthenticated)
            {
                if (!(Context.User is UART.Accounts.Bus.AccountsPrincipal))
                {
                    UART.Accounts.Bus.AccountsPrincipal principal = new UART.Accounts.Bus.AccountsPrincipal(Context.User.Identity.Name);
                    Context.User = principal;
                }
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3180  2010-09-16 09:53  51aspx源码必读.txt
     目录           0  2012-07-06 14:04  Accounts\
     文件        2905  2010-09-15 15:14  Accounts\Accounts.csproj
     文件         274  2010-07-18 22:21  Accounts\Accounts.csproj.vspscc
     文件        1116  2010-06-19 20:46  Accounts\AccountsPage.cs
     目录           0  2012-07-06 14:04  Accounts\bin\
     文件       19456  2010-09-15 15:14  Accounts\bin\Accounts.dll
     文件       67072  2010-09-15 15:14  Accounts\bin\Accounts.pdb
     文件       12799  2010-09-15 15:14  Accounts\bin\Accounts.xml
     目录           0  2012-07-06 14:04  Accounts\bin\Debug\
     文件       20992  2010-07-18 22:30  Accounts\bin\Debug\Accounts.dll
     文件       87552  2010-07-18 22:29  Accounts\bin\Debug\Accounts.pdb
     文件         133  2010-08-09 20:20  Accounts\bin\Debug\Accounts.xml
     文件         116  2007-12-04 19:22  Accounts\bin\Debug\vssver2.scc
     目录           0  2008-04-01 23:53  Accounts\bin\Release\
     目录           0  2012-07-06 14:04  Accounts\Bus\
     文件        4821  2010-06-19 20:46  Accounts\Bus\AccountsPrincipal.cs
     文件        5773  2010-06-19 20:46  Accounts\Bus\SiteIdentity.cs
     文件        5330  2010-06-19 20:46  Accounts\Bus\User.cs
     目录           0  2012-07-06 14:04  Accounts\Data\
     文件        7614  2010-06-19 20:46  Accounts\Data\User.cs
     文件       11189  2010-06-19 20:46  Accounts\DbManagerSQL.cs
     文件        7287  2010-06-19 20:46  Accounts\Dbobject.cs
     文件        2547  2010-06-19 20:46  Accounts\DESEncrypt.cs
     文件         153  2010-07-18 22:21  Accounts\mssccprj.scc
     目录           0  2012-07-06 14:04  Accounts\obj\
     文件         138  2008-07-29 08:54  Accounts\obj\Accounts.csproj.FileList.txt
     文件         828  2008-08-19 18:50  Accounts\obj\Accounts.csproj.FileListAbsolute.txt
     目录           0  2012-07-06 14:04  Accounts\obj\Debug\
     文件         874  2010-07-24 15:21  Accounts\obj\Debug\Accounts.csproj.FileListAbsolute.txt
     文件       20992  2010-07-18 22:30  Accounts\obj\Debug\Accounts.dll
............此处省略1111个文件信息

评论

共有 条评论