1234567891011121314151617181920212223242526272829 |
- using DataTransfersLibs;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using DataTransfersLibs.Service;
- namespace GSMarketSys.CheckData
- {
- public partial class DataTransfer : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- //DataUpdate loDataUpdate = new DataUpdate(this.Page);
- DataUpdateService loDataUpdate = new DataUpdateService(Page);
- Response.Clear();
- if (loDataUpdate.CheckUserValid())
- {
- Response.Write(loDataUpdate.UpdateAllRecords() ? "0" : loDataUpdate.ErrorMsg);
- }else
- {
- Response.Write("E1000");
- }
- Response.End();
- }
- }
- }
|