ZhiYeJianKang_PeiXun/Song.Site/Manage/Site/FlowNumber.cs
2025-02-20 15:41:53 +08:00

50 lines
1.3 KiB
C#

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.IO;
using System.Text;
using WeiSha.Common;
using Song.ServiceInterfaces;
namespace Song.Site.Manage.Site
{
/// <summary>
/// ¼ÇÂ¼ÍøÕ¾·ÃÎÊÁ¿
/// </summary>
public class FlowNumber : IHttpHandler
{
#region IHttpHandler ³ÉÔ±
public bool IsReusable
{
get { return true; }
}
public void ProcessRequest(HttpContext context)
{
string filePath = context.Request.FilePath;
int cookie = WeiSha.Common.Request.Cookies["flowNumber"].Int32 ?? 0;
if (cookie < 1)
{
context.Response.Cookies.Add(new HttpCookie("flowNumber", "1"));
int flow = Business.Do<ISystemPara>()["flowNumber"].Int32 ?? 0;
flow++;
Business.Do<ISystemPara>().Save("flowNumber", flow.ToString());
}
StreamReader read = new StreamReader(context.Server.MapPath(filePath));
string html = read.ReadToEnd();
read.Close();
context.Response.Write(html);
}
#endregion
}
}