- using System;
- using System.Web;
- using Utils;
- namespace SiteCore.Handler
- {
- public class st : BaseHandler, IHttpHandler
- {
- public void ProcessRequest(HttpContext context)
- {
- CommonHelper.PageExpires();
- context.Response.Write(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
- }
- }
- }
|