detailsorderr_print.aspx.cs

来自「webshop系统,功能齐全,代数据库.压缩包解压时没有密码」· CS 代码 · 共 120 行

CS
120
字号
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 + =
减小字号Ctrl + -
显示快捷键?