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 { /// /// 初始化界面 /// 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)); } } }