private void fxGLPostingManage()
 {
     try
     {
         Response.Write(GLPostingBAL.fxGLPostingManage(Request.Form));
     }
     catch (Exception ex)
     {
         Response.Write("Error: " + ex.Message);
     }
 }
    private void fxGLPostingGet()
    {
        List <GLPosting> GLPostings = GLPostingBAL.fxGLPostingGet(Request.QueryString);

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