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.Text; using DSWeb.EntityDA; namespace DSWeb.Shipping { public partial class OrderManagement : System.Web.UI.Page { private const string strSql = " SELECT BSNO,*,'../shipping/edit.aspx?handle=edit&id=' as OpenHandle " + " FROM op_seae"; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.wucGridView1.gvBind(strSql); //GridView grid = (GridView)this.wucGridView1.Controls[0].FindControl("GridView1"); //grid.Columns[1].Visible = false; //grid.Columns[grid.Columns.Count - 1].Visible = false; } if (Request.QueryString["getinfo"] != null) { GetInfo(strSql); Response.End(); } if (Request.QueryString["refresh"] != null) { wucGridView1.gvBind(strSql); Response.End(); } } private void GetInfo(string sql) //右键详细菜单函数 { int id = 0; if (!int.TryParse(Request.QueryString["id"], out id)) { Response.Write("error"); return; } //string sql = "select * from price_cust where pcid=" + id.ToString(); DataTable dt = DB.GetTable(sql); if (dt.Rows.Count == 0) { Response.Write("error"); return; } DataRow row = dt.Rows[0]; StringBuilder sb = new StringBuilder(); sb.Append("
详细信息 | |
ID: | {0} |
报价单号: | {0} |
客户名称: | {0} |
录入人: | {0} |