12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using HNWD.Pregrant.BusinessLogic;
- using HNWD.Pregrant.Common;
- using HNWD.Pregrant.WebService;
- namespace HNWD.DoctorHost.WebService.WDYS_I
- {
- public partial class callingMainDoctor_APP_CheckUpdate : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- App_CheckUpdateBase app = new callingDoctor_Update();
- if (!app.Check())
- {
- this.ResponseDefaultError(app.Message);
- return;
- }
- Response.Write(JsonHelper.SerializeWithSuffix(app.wd_VerInfo));
- }
- }
- }
|