/**
|
* OrderOperate.aspx.cs
|
*
|
* 功 能: 订单操作列表
|
* 类 名: OrderOperate
|
*
|
* Ver 变更日期 负责人 变更内容
|
* ───────────────────────────────────
|
* V0.01 2013-5-21 9:48 吴崎均 初版
|
*
|
*
|
*
|
*/
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
using System.Web.UI;
|
using System.Web.UI.WebControls;
|
using CY.BLL.EC;
|
using CY.Infrastructure.Common;
|
|
namespace CY.WebForm.Pages.business
|
{
|
/// <summary>
|
/// 订单操作
|
/// </summary>
|
public partial class OrderOperate : BasePage
|
{
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
if (IsPostBack || IsCallback)
|
{
|
return;
|
|
}
|
else ;
|
string id = Request["id"];
|
|
if (string.IsNullOrEmpty(Request["orderId"]) || string.IsNullOrEmpty(id))
|
{
|
return;
|
}
|
|
try
|
{
|
int? orderId = MyConvert.ConvertToInt32(id);
|
if (!orderId.HasValue) return; else ;
|
EC_OrderBasicBLL _eC_OrderBasicBLL = new EC_OrderBasicBLL();
|
rptData.DataSource = _eC_OrderBasicBLL.SelectOrderOperates(orderId.Value);
|
rptData.DataBind();
|
}
|
catch (Exception ex)
|
{
|
PAGEHandleException(ex);
|
}
|
}
|
}
|
}
|