Ejemplo n.º 1
0
    protected void GetQuotations()
    {
        BLL_TRV_QuoteRequest qr = new BLL_TRV_QuoteRequest();
        DataSet ds = new DataSet();

        try
        {
            ds = qr.Get_Quotation_Ticket(UDFLib.ConvertToInteger(Request.QueryString["requestid"].ToString()));
            rptParent.DataSource = ds.Tables[0];
            rptParent.DataBind();

            rptChild.DataSource = ds.Tables[1];
            rptChild.DataBind();
        }
        catch { }
        finally { qr = null; }
    }