コード例 #1
0
 protected void BindRemarks(string InvoiceID)
 {
     try
     {
         DataSet ds = BLL_POLOG_Register.POLOG_Get_Remarks_ByInvoiceID(InvoiceID);
         //gvRemarks.DataSource = ds.Tables[0];
         //gvRemarks.DataBind();
     }
     catch { }
     {
     }
 }
コード例 #2
0
 protected void BindRemarks()
 {
     try
     {
         DataSet ds = BLL_POLOG_Register.POLOG_Get_Remarks_ByInvoiceID(UDFLib.ConvertStringToNull(txtInvoiceCode.Text.ToString()));
         gvRemarkslog.DataSource = ds.Tables[0];
         gvRemarkslog.DataBind();
     }
     catch { }
     {
     }
 }