資源簡介
酒店網站 管理思路清晰 代碼優化良好,功能比較全面

代碼片段和文件信息
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?????????{
????????????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?????????{
????????????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??databa
?????文件??????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個文件信息
評論
共有 條評論