st.cs 338 B

123456789101112131415
  1. using System;
  2. using System.Web;
  3. using Utils;
  4. namespace SiteCore.Handler
  5. {
  6. public class st : BaseHandler, IHttpHandler
  7. {
  8. public void ProcessRequest(HttpContext context)
  9. {
  10. CommonHelper.PageExpires();
  11. context.Response.Write(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  12. }
  13. }
  14. }