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 DSWeb.EntityDA; using System.Text; namespace DSWeb.FeeCodes { public partial class CurrencyList : System.Web.UI.Page { private const string strSql = " SELECT A.GID,A.CODENAME,A.NAME,A.DESCRIPTION,A.DEFAULTRATE,A.CREATEUSER,A.CREATETIME,A.MODIFIEDUSER,A.MODIFIEDTIME,B.USERNAME " + " FROM code_currency AS A INNER JOIN [user] AS B ON A.CREATEUSER = B.GID "; 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} |