123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using HNWD.Pregrant.WebService;
- using HNWD.Pregrant.Model;
- using System.Text;
- using HNWD.Pregrant.DataAccess;
- using HNWD.Pregrant.Common;
- using HNWD.Pregrant.BusinessLogic;
- namespace HNWD.Pregrant.WebService.WDMK_I
- {
- /// <summary>
- /// 初始化界面
- /// </summary>
- public partial class callingBed_APP_CheckUpdate : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- App_CheckUpdateBase app = new callingBed_UpdateBase();
- if (!app.Check())
- {
- this.ResponseDefaultError(app.Message);
- return;
- }
- Response.Write(JsonHelper.SerializeWithSuffix(app.wd_VerInfo));
- }
- }
- }
|