| 12345678910111213141516171819 |
- <%@ WebHandler Language="C#" Class="start" %>
- using System;
- using System.Web;
- public class start : IHttpHandler {
-
- public void ProcessRequest (HttpContext context) {
- context.Response.ContentType = "text/plain";
- context.Response.Write("开始任务!");
- }
-
- public bool IsReusable {
- get {
- return false;
- }
- }
- }
|