Example #1
0
 private void fxAgingPostingManage()
 {
     try
     {
         Response.Write(AgingPostingBAL.fxAgingPostingManage(Request.Form));
     }
     catch (Exception ex)
     {
         Response.Write("Error: " + ex.Message);
     }
 }
Example #2
0
    private void fxAgingPostingGet()
    {
        List <AgingPosting> AgingPostings = AgingPostingBAL.fxAgingPostingGet(Request.QueryString);

        if ((AgingPostings != null) && AgingPostings.Count > 0)
        {
            Response.Write(AgingPostings.ToJSON());
        }
        else
        {
            Response.Write("No Result");
        }
    }