private void Manage()
    {
        string ID = AccountAdjustmentFormBAL.Manage(Request.QueryString);

        if ((ID != null))
        {
            int idx;

            idx = Convert.ToInt32(ID);

            Response.Write(idx.ToJSON());
        }
        else
        {
            Response.Write("No Result");
        }
    }