?? detailsorderr_print.aspx.cs
字號:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace WebShop
{
/// <summary>
/// detailsorderr_print 的摘要說明。
/// </summary>
public class detailsorderr_print : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.Label nametxt;
protected System.Web.UI.WebControls.Label Label4;
protected System.Web.UI.WebControls.Label emailtxt;
protected System.Web.UI.WebControls.Label Label5;
protected System.Web.UI.WebControls.Label datetxt;
protected System.Web.UI.WebControls.Label Label6;
protected System.Web.UI.WebControls.Label phonetxt;
protected System.Web.UI.WebControls.Label Label7;
protected System.Web.UI.WebControls.Label addresstxt;
protected System.Web.UI.WebControls.Label lblInfo;
protected System.Web.UI.HtmlControls.HtmlInputButton print_2;
protected System.Web.UI.HtmlControls.HtmlInputButton print_3;
protected System.Web.UI.HtmlControls.HtmlInputButton print_4;
public string id;
private void ShowMsg(string Message,int MessageType)
{
this.lblInfo.Visible = true;
if(MessageType==0)//Mission accomplished
{
this.lblInfo.Text = Message;
this.lblInfo.ForeColor = Color.Blue;
}
else
{
this.lblInfo.Text = Message;
this.lblInfo.ForeColor = Color.Red;
}
}
private void Bind()
{
try
{
string bookid=ViewState["BookId"].ToString();
DataSet ds = DataAccessLayer.Order.GetOrders_details(id);
//ds.Tables[0].DefaultView.Sort = ViewState["Sort"].ToString();
//this.Dglist.DataSource = ds.Tables[0].DefaultView;
//this.Dglist.DataBind();
nametxt.Text=ds.Tables[0].Rows[0]["name"].ToString();
emailtxt.Text=ds.Tables[0].Rows[0]["mail"].ToString();
datetxt.Text=ds.Tables[0].Rows[0]["orderdate"].ToString();
phonetxt.Text=ds.Tables[0].Rows[0]["phone"].ToString();
addresstxt.Text=ds.Tables[0].Rows[0]["address"].ToString();
this.lblInfo.Text = "清單的ID編號是:" + ds.Tables[0].Rows[0]["orderid"].ToString();
}
catch(Exception ex)
{
ShowMsg(ex.Message,1);
}
}
private void Page_Load(object sender, System.EventArgs e)
{
id=Request["orderid"].ToString();
Bind();
}
#region Web 窗體設計器生成的代碼
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 該調用是 ASP.NET Web 窗體設計器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
/// 此方法的內容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -