1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**  
* 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();
        }
    }
}