12345678910111213141516171819202122232425262728293031323334353637 |
- 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.MgrCSharp
- {
- public partial class GetWD_ZoneInfo : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!this.InitializeDataAccess())
- {
- this.ResponseDefaultError(PromptingMessage.Error_Data_Initialized);
- return;
- }
- this.wd_ZoneInfoDataAccess.ext.FileList = this.wd_ZoneInfoDataAccess.ext.FileList.OrderBy(f => Convert.ToInt32(f.ID)).ToList();
- this.wd_ZoneInfoDataAccess.ext.Rows = this.wd_ZoneInfoDataAccess.ext.FileList.Count;
- this.Response.Write(JsonHelper.SerializeWithSuffix(this.wd_ZoneInfoDataAccess.ext));
- }
- }
- }
|