/**
* SeckillOnline.aspx.cs
*
* 功 能: 在线秒杀
* 类 名: SeckillOnline
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2013-4-25 13:20 吴崎均 初版
*
*
*
*
*
*
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CY.BLL;
namespace CY.WebForm.Pages.front
{
///
/// 在线秒杀
///
public partial class SeckillOnline : FrontBasePage
{
Pay_PaymentAccountBLL _pay_PaymentAccountBLL;
///
/// 初始化
///
public SeckillOnline()
{
_pay_PaymentAccountBLL = new Pay_PaymentAccountBLL();
}
///
/// 页面加载
///
///
///
protected void Page_Load(object sender, EventArgs e)
{
if (CurrentUser == null)
{
Response.Redirect("/login.html?backurlCS=" + "/seckill/list.html");
}
try
{
switch (Request["Target"])
{
case "MergeBufferMoneyByMemberId":
break;
default:
return;
}
}
catch (Exception ex)
{
PAGEHandleException(ex);
Response.Clear();
Response.Write(-1);
}
Response.End();
}
}
}