/**
|
* 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
|
{
|
/// <summary>
|
/// 在线秒杀
|
/// </summary>
|
public partial class SeckillOnline : FrontBasePage
|
{
|
Pay_PaymentAccountBLL _pay_PaymentAccountBLL;
|
/// <summary>
|
/// 初始化
|
/// </summary>
|
public SeckillOnline()
|
{
|
_pay_PaymentAccountBLL = new Pay_PaymentAccountBLL();
|
}
|
/// <summary>
|
/// 页面加载
|
/// </summary>
|
/// <param name="sender"></param>
|
/// <param name="e"></param>
|
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();
|
}
|
}
|
}
|