📄 checklook.aspx.cs
字号:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class Admin_Frameset_Operation_CheckLook : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Write("..");
if (!IsPostBack)
{
bind();
}
}
public void bind()
{
string strtemp = Request.QueryString["htcode"].ToString().Trim();
this.htcode.Text = strtemp;
this.htcode.ReadOnly = true;
Vouchers voucher = new Vouchers();
voucher.LoadData(Convert.ToInt32(strtemp.Trim()));
this.CustomerName.Text = voucher.CustomerName;
this.EngineName.Text = voucher.EngineName;
this.EngineLocal.Text = voucher.EngineLocal;
this.GiveLocal.Text = voucher.GiveLocal;
this.FiteCode.Text = voucher.FiteCode.ToString();
this.TongStrong.Text = voucher.TongStrong.ToString();
this.ShuiniCode.Text = voucher.ShuiniCode;
this.Taluodu.Text = voucher.Taluodu;
this.SjName.Text = voucher.SjName;
this.CarCode.Text = voucher.CarCode;
this.dCarFl.Text = voucher.dCarFl;
this.TotalFl.Text = voucher.TotalFl;
this.StartTime.Text = voucher.StartTime.ToString();
this.EndTime.Text = voucher.EndTime.ToString();
this.XwTime.Text = voucher.XwTime.ToString();
this.OperPerson.Text = voucher.OperPerson;
this.DiaoduOper.Text = voucher.DiaoduOper;
this.XwTime.Text = voucher.XwTime.ToString();
this.printtime.Value = voucher.PrintTime.ToString();
this.xzmode.Text = voucher.XZMode;
this.CustomerSinature.Enabled = false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -