• 大小: 3.8MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-28
  • 语言: C#
  • 标签: asp.net  酒店网站  

资源简介

酒店网站 管理思路清晰 代码优化良好,功能比较全面

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
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.Text;
using System.Security.Cryptography;
using System.Collections.Specialized;
using System.IO;
using System.Data.SqlClient;
using System.Data.OleDb;
using System.Net;


public partial class Alipay_Notify : System.Web.UI.Page
{   
    
    /// 
    /// created by sunzhizhi 2006.5.21sunzhizhi@msn.com。
    /// 


    public static string GetMD5(string s)
    {

        /// 
        /// 与ASP兼容的MD5加密算法
        /// 


        MD5 md5 = new MD5CryptoServiceProvider();
        byte[] t = md5.ComputeHash(Encoding.GetEncoding(“utf-8“).GetBytes(s));
        StringBuilder sb = new StringBuilder(32);
        for (int i = 0; i < t.Length; i++)
        {
            sb.Append(t[i].ToString(“x“).PadLeft(2 ‘0‘));
        }
        return sb.ToString();
    }
    public static string[] BubbleSort(string[] R)
    {
        /// 
        /// 冒泡排序法
        /// 


        int i j; //交换标志 
        string temp;

        bool exchange;

        for (i = 0; i < R.Length; i++) //最多做R.Length-1趟排序 
        {
            exchange = false; //本趟排序开始前,交换标志应为假

            for (j = R.Length - 2; j >= i; j--)
            {
                if (System.String.CompareOrdinal(R[j + 1] R[j]) < 0) //交换条件
                {
                    temp = R[j + 1];
                    R[j + 1] = R[j];
                    R[j] = temp;

                    exchange = true; //发生了交换,故将交换标志置为真 
                }
            }

            if (!exchange) //本趟排序未发生交换,提前终止算法 
            {
                break;
            }

        }
        return R;
    }
    //获取远程服务器ATN结果
    public String Get_Http(String a_strUrl int timeout)
    {
        string strResult;
        try
        {

            HttpWebRequest myReq = (HttpWebRequest)HttpWebRequest.Create(a_strUrl);
            myReq.Timeout = timeout;
            HttpWebResponse HttpWResp = (HttpWebResponse)myReq.GetResponse();
            Stream myStream = HttpWResp.GetResponseStream();
            StreamReader sr = new StreamReader(myStream Encoding.Default);
            StringBuilder strBuilder = new StringBuilder();
            while (-1 != sr.Peek())
            {
                strBuilder.Append(sr.ReadLine());
            }

            strResult = strBuilder.ToString();
        }
        catch (Exception exp)
        {

            strResult = “错误:“ + exp.Message;
        }

        return strResult;
    }

 public string  Get_Alipay()
     {
       PageAdmin.Conn Myconn=new PageAdmin.Conn();
       string constr=Myconn.Constr();
       string sql=“select top 1 * from onlinepay where onlinepay_type=‘alipay‘“;
       OleDbConne

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

     文件      45056  2003-05-14 15:51  bin\Interop.jmail.dll

     文件       4608  2010-09-15 11:56  bin\PageAdmin.Conn.dll

     文件      65536  2010-09-15 12:15  bin\PageAdmin.FCKeditor.dll

     文件      12288  2010-09-14 10:25  bin\PageAdmin.Install.dll

     文件     826368  2012-03-28 17:07  bin\PageAdmin.Master.dll

     文件       4096  2010-09-14 10:25  bin\PageAdmin.Md5.dll

     文件       5632  2010-09-15 12:13  bin\PageAdmin.Pay.dll

     文件       7168  2010-09-15 17:04  bin\PageAdmin.SendMail.dll

     文件       6144  2010-09-14 10:25  bin\PageAdmin.Thumbnai.dll

     文件       8192  2010-09-14 10:25  bin\PageAdmin.URLRewriter.dll

     文件       8704  2010-09-14 10:25  bin\PageAdmin.Watermark.dll

     文件     698368  2012-03-28 17:07  bin\PageAdmin.Web.dll

     文件       5632  2010-09-14 10:25  bin\PageAdmin.YZM.dll

     文件    1339392  2012-04-17 12:15  database\data2010.mdb

     文件      14121  2008-09-13 14:59  images\banner\banner.swf

     文件      35818  2009-01-03 11:30  images\banner\banner_en.jpg

     文件      17598  2008-09-13 14:59  images\banner\swf.swf

     文件       3770  2008-05-06 11:57  images\banner\swf1.swf

     文件       1709  2008-05-06 11:57  images\banner\swf2.swf

     文件        569  2008-05-06 11:57  images\banner\swf3.swf

    ..A.SH.     18432  2012-04-13 09:32  images\banner\Thumbs.db

     文件       5338  2012-04-12 21:42  images\cldt.jpg

     文件       7726  2012-04-12 23:04  images\clhj.jpg

     文件      18015  2012-04-12 22:48  images\cljj.jpg

     文件       6438  2012-04-12 21:58  images\clts.jpg

     文件       5364  2012-04-12 23:17  images\cwh.jpg

     文件       4994  2012-04-12 17:10  images\dh.jpg

     文件       4563  2012-04-12 19:11  images\dh2.jpg

     文件        403  2010-06-24 12:18  images\fileicon\ai.gif

     文件        249  2010-06-24 12:18  images\fileicon\avi.gif

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

评论

共有 条评论