callingMainDoctor_APP_CheckUpdate.aspx.cs 732 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. using HNWD.Pregrant.BusinessLogic;
  8. using HNWD.Pregrant.Common;
  9. using HNWD.Pregrant.WebService;
  10. namespace HNWD.DoctorHost.WebService.WDYS_I
  11. {
  12. public partial class callingMainDoctor_APP_CheckUpdate : PageBase
  13. {
  14. protected void Page_Load(object sender, EventArgs e)
  15. {
  16. App_CheckUpdateBase app = new callingDoctor_Update();
  17. if (!app.Check())
  18. {
  19. this.ResponseDefaultError(app.Message);
  20. return;
  21. }
  22. Response.Write(JsonHelper.SerializeWithSuffix(app.wd_VerInfo));
  23. }
  24. }
  25. }