• 大小: 4.25MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-23
  • 语言: C#
  • 标签: c#  

资源简介

基于ASP.NET的系统(SQLServer版) 1.包含源程序,数据库脚本。代码和数据库脚本都有详细注释。 2.课题设计仅供参考学习使用,可以在此基础上进行扩展完善。 开发环境: Visual Studio 2010,SQL Server 2008 涉及技术点: ASP.Net2.0、HTML、CSS、JavaScript、SQLServer等 程序功能: 项目我测试过是可以直接运行的,如果帮助到了您 麻烦记得给个好评谢谢啦。

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

namespace XJGLXT
{
    public partial class Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender EventArgs e)
        {

        }
        //登录按钮
        protected void btnLogin_Click(object sender EventArgs e)
        {
            string strUserName = txtUserName.Text.Trim();
            string strPassword = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text.Trim() “MD5“).ToLower().ToString();//MD5加密
            string strUserType = DropDownListUserType.SelectedValue.ToString().Trim();

            Code.VerifyLogin db = new Code.VerifyLogin();
            if (db.Login(strUserName strPassword strUserType))
            {
                //FormsAuthentication.SetAuthCookie(strUserName createPersistentCookie: false);
                HttpCookie cookie = new HttpCookie(“User“);
                //cookie.Value = strUserName;
                cookie.Values[“UserName“] = strUserName;
                cookie.Values[“UserType“] = strUserType;
                cookie.Expires = System.DateTime.Now.AddDays(1);
                Response.Cookies.Add(cookie);
                Response.Redirect(“~/Frm/Main.aspx“);
            }
            else
            {
                Code.Common.ShowMessage(this “用户名或密码错误“);
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      85567  2018-04-29 18:00  课设\XJGLXT\.vs\config\applicationhost.config

    ..A..H.     84992  2018-04-30 00:25  课设\XJGLXT\.vs\WebStudent\v15\.suo

     文件          0  2018-04-29 18:00  课设\XJGLXT\.vs\WebStudent\v15\Server\sqlite3\db.lock

     文件     925696  2018-04-30 00:25  课设\XJGLXT\.vs\WebStudent\v15\Server\sqlite3\storage.ide

     文件     200704  2018-06-22 00:26  课设\XJGLXT\bin\ICSharpCode.SharpZipLib.dll

     文件      92160  2009-12-20 12:57  课设\XJGLXT\bin\NPOI.DDF.dll

     文件    1679360  2018-06-22 00:26  课设\XJGLXT\bin\NPOI.dll

     文件      53248  2009-12-20 13:16  课设\XJGLXT\bin\NPOI.HPSF.dll

     文件     964608  2009-12-20 13:33  课设\XJGLXT\bin\NPOI.HSSF.dll

     文件     536064  2018-06-22 00:26  课设\XJGLXT\bin\NPOI.OOxml.dll

     文件      91136  2018-06-22 00:26  课设\XJGLXT\bin\NPOI.Openxml4Net.dll

     文件    2121728  2018-06-22 00:26  课设\XJGLXT\bin\NPOI.OpenxmlFormats.dll

     文件      49664  2009-12-20 13:16  课设\XJGLXT\bin\NPOI.POIFS.dll

     文件      39424  2009-12-20 12:57  课设\XJGLXT\bin\NPOI.Util.dll

     文件    2254144  2018-06-22 00:26  课设\XJGLXT\bin\NPOI.xml

     文件      72192  2018-12-30 01:10  课设\XJGLXT\bin\WebStudent.dll

     文件       2322  2018-06-22 00:47  课设\XJGLXT\bin\WebStudent.dll.config

     文件     181760  2018-12-30 01:10  课设\XJGLXT\bin\WebStudent.pdb

     文件        364  2018-12-29 19:38  课设\XJGLXT\Code\College.cs

     文件       5447  2018-12-29 20:14  课设\XJGLXT\Code\CollegeManage.cs

     文件       1382  2018-12-29 19:27  课设\XJGLXT\Code\Common.cs

     文件        447  2018-12-29 19:27  课设\XJGLXT\Code\Config.cs

     文件      24653  2018-12-29 19:27  课设\XJGLXT\Code\ExcelHelper.cs

     文件        482  2018-12-29 21:24  课设\XJGLXT\Code\Grade.cs

     文件       5965  2018-12-29 21:30  课设\XJGLXT\Code\GradeManage.cs

     文件        508  2018-12-29 22:03  课设\XJGLXT\Code\Reward.cs

     文件       6430  2018-12-29 22:41  课设\XJGLXT\Code\RewardManage.cs

     文件        546  2018-12-29 19:27  课设\XJGLXT\Code\Student.cs

     文件       6682  2018-12-29 19:27  课设\XJGLXT\Code\StudentManage.cs

     文件       7126  2018-12-29 19:27  课设\XJGLXT\Code\UserManage.cs

............此处省略135个文件信息

评论

共有 条评论