• 大小: 7.26MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-11-02
  • 语言: C#
  • 标签: 管理  

资源简介

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace 图书管理系统 { public partial class 登录窗口 : Form { //public static string ConnectionString = "Server=(local);database=图书管理库;uid=sa;pwd=1234"; //sql server 混合模式 // public static string ConnectionString = "Server=(local);Integrated Security=SSPI;database=图书管理库"; //windows模式 public string strSQL; public SqlConnection myConnection; public SqlCommandBuilder sqlCmdBld; public DataSet ds = new DataSet(); public SqlDataAdapter da; public int num=0; private DataTable myTable; private DataRow myRow; public static string strUser; public static string strPassword; // public static string strDepartment; public static bool login_flag = false; public 登录窗口() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { Close(); } private void 登录窗口_Load(object sender, EventArgs e) { linkdatabase link = new linkdatabase(); //实例化 myConnection = new SqlConnection(link.connectionstring()); //实例化连接 strSQL = "select * from 用户表 "; da = new SqlDataAdapter(strSQL, myConnection); ds.Clear(); da.Fill(ds, "用户表"); //////动作 myTable = ds.Tables["用户表"]; for (int i = 0; i < myTable.Rows.Count; i++) { comboBox1.Items.Add(myTable.Rows[i]["用户名"].ToString().Trim()); } } private void button1_Click(object sender, EventArgs e) { linkdatabase link = new linkdatabase(); //实例化 myConnection = new SqlConnection(link.connectionstring()); //实例化连接 strSQL = "sele

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;

namespace 图书管理系统
{
    class crypt
    {
        //此处定义静态类Jiami


        //key为加密密匙可定期任意修改
        private const string key = “ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz“;

        // EnCode为字符串加密函数str为待加密的字符串,返回值为加密后的字符串
        public string EnCode(string str)
        {
            if (string.IsNullOrEmpty(str))
            {
                return ““;
            }

            byte[] buff = Encoding.Default.GetBytes(str);
            int j k m;
            int len = key.Length;
            StringBuilder sb = new StringBuilder();
            Random r = new Random();

            for (int i = 0; i < buff.Length; i++)
            {
                j = (byte)r.Next(6);
                buff[i] = (byte)((int)buff[i] ^ j);
                k = (int)buff[i] % len;
                m = (int)buff[i] / len;
                m = m * 8 + j;
                sb.Append(key.Substring(k 1) + key.Substring(m 1));
            }
            return sb.ToString();
        }

        // DeCode为字符串解密函数str为待解密的字符串,返回值为解密后的字符串
        public string DeCode(string str)
        {
            if (string.IsNullOrEmpty(str))
            {
                return ““;
            }

            try
            {
                int j k m n = 0;
                int len = key.Length;
                byte[] buff = new byte[str.Length / 2];

                for (int i = 0; i < str.Length; i += 2)
                {
                    k = key.IndexOf(str[i]);
                    m = key.IndexOf(str[i + 1]);
                    j = m / 8;
                    m = m - j * 8;
                    buff[n] = (byte)(j * len + k);
                    buff[n] = (byte)((int)buff[n] ^ m);
                    n++;
                }
                return Encoding.Default.GetString(buff);
            }
            catch
            {
                return ““;
            }
        }


   


    //*************** 不可逆转  MD5加密
            public string SetEncrypt(string text)
            {
                if (text == ““)
                {
                    return ““;
                }
                MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
                string cryptText = BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(text)) 6 8);
                
                return cryptText;
            }


 }
}

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

     文件     277504  2011-05-18 15:20  图书管理系统\C#实训报告.doc

     文件      79287  2011-05-16 12:41  图书管理系统\image\12Z041E4W0-39544.jpg

     文件       4431  2010-12-14 10:48  图书管理系统\image\14402917.jpg

     文件      38614  2011-05-15 14:51  图书管理系统\image\2.jpg

     文件     184671  2011-05-16 12:43  图书管理系统\image\2008082516132307.jpg

     文件     131258  2011-05-30 20:07  图书管理系统\image\2008128214935601_2.jpg

     文件     134649  2011-05-16 12:41  图书管理系统\image\20081512123403_2.jpg

     文件      26749  2010-12-14 10:48  图书管理系统\image\273ff9c79547fb14b319a8a3.jpg

     文件      91417  2011-05-15 14:59  图书管理系统\image\3.jpg

     文件      36063  2010-12-14 10:41  图书管理系统\image\431ae67a90f594790cd7daa1.jpg

     文件     163142  2011-05-16 12:43  图书管理系统\image\4550-1.jpg

     文件      63051  2010-12-14 10:51  图书管理系统\image\674c15ad70523ebd1e17a2a1.jpg

     文件      92199  2011-05-15 15:20  图书管理系统\image\无标题.jpg

     文件    3145728  2011-05-18 15:39  图书管理系统\图书管理库.mdf

     文件    1048576  2011-05-18 15:39  图书管理系统\图书管理库_log.ldf

     文件        457  2011-05-01 15:08  图书管理系统\图书管理系统\app.config

     文件    3245568  2011-06-17 12:40  图书管理系统\图书管理系统\bin\Debug\图书管理系统.exe

     文件        457  2011-05-01 15:08  图书管理系统\图书管理系统\bin\Debug\图书管理系统.exe.config

     文件     275968  2011-06-17 12:40  图书管理系统\图书管理系统\bin\Debug\图书管理系统.pdb

     文件      14328  2011-05-18 15:38  图书管理系统\图书管理系统\bin\Debug\图书管理系统.vshost.exe

     文件        457  2011-05-01 15:08  图书管理系统\图书管理系统\bin\Debug\图书管理系统.vshost.exe.config

     文件        490  2007-07-21 01:33  图书管理系统\图书管理系统\bin\Debug\图书管理系统.vshost.exe.manifest

     文件       2762  2011-05-01 15:08  图书管理系统\图书管理系统\Class1.cs

     文件       5303  2011-05-17 09:59  图书管理系统\图书管理系统\crp_入库报表.cs

     文件      16384  2011-05-17 09:59  图书管理系统\图书管理系统\crp_入库报表.rpt

     文件       6033  2011-05-01 15:08  图书管理系统\图书管理系统\crp_分类入库报表.cs

     文件      16384  2011-05-01 15:08  图书管理系统\图书管理系统\crp_分类入库报表.rpt

     文件     127269  2011-05-01 15:08  图书管理系统\图书管理系统\DataSet1.Designer.cs

     文件        361  2011-05-01 15:08  图书管理系统\图书管理系统\DataSet1.xsc

     文件      38961  2011-05-01 15:08  图书管理系统\图书管理系统\DataSet1.xsd

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

评论

共有 条评论