0 Star 1 Fork 0

Kevin / WeatherServer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MontingServer.ashx 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
Kevin 提交于 2014-12-31 18:20 . 1.5版正常服务
<%@ WebHandler Language="C#" Class="MontingServer" %>
using System;
using System.Web;
using System.Collections.Generic;
using System.Threading;
public class MontingServer : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
context.Response.ContentType = "text/plain";
String Result = "{ErrorCode:-1,Message:'Unknow Function.'}";
int fn = -1;
if (!String.IsNullOrEmpty(context.Request["fn"]))
{
int.TryParse(context.Request["fn"].ToString(), out fn);
switch (fn)
{
case 1:
Result= FormatUtility.GetWeatherTable(DataBaseUtility.ReadTop20NewWeather());
break;
case 2:
Result = FormatUtility.GetWeatherForCache(context);
break;
case 3:
if (CacheUtility.GetInstance(context).ClearCache())
{
Result = "Clear Cache Over";
}
else
{
Result = "Clear Cache Error";
}
break;
case 4:
List<County> countyList=DataBaseUtility.getUnkownCounty();
foreach(County c in countyList)
{
context.Response.Write(CacheUtility.GetInstance(context).CheckCity(c.Code));
Thread.Sleep(1000);
}
break;
}
}
context.Response.Write(Result);
}
public bool IsReusable {
get {
return false;
}
}
}
1
https://gitee.com/KevinQin2008/WeatherServer.git
git@gitee.com:KevinQin2008/WeatherServer.git
KevinQin2008
WeatherServer
WeatherServer
master

搜索帮助