Esempio n. 1
0
    protected void BindUserInformation()
    {
        DataTable dtCustomerInformation = reqQuote.GetCustomerID(Request.QueryString["CustNo"].ToString());

        lblCustomerName.Text = dtCustomerInformation.Rows[0]["Name1"].ToString();
        lblAddress.Text      = dtCustomerInformation.Rows[0]["AddrLine1"].ToString();
        lblCity.Text         = dtCustomerInformation.Rows[0]["City"].ToString();
        lblState.Text        = dtCustomerInformation.Rows[0]["State"].ToString();
        lblPostCd.Text       = dtCustomerInformation.Rows[0]["PostCd"].ToString();
        txtRef.Text          = Request.QueryString["CustRefNo"].ToString();
        lblRFQID.Text        = Request.QueryString["RFQID"].ToString();
        txtPFCSales.Text     = Request.QueryString["SalesRep"].ToString();
    }