为什么 ASP.NET 3.5 Web 应用程序中的默认“通用处理程序”代码会向类添加属性,而不是正确的命名空间引用。这是他们为您提供的开箱即用模板:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Handler1
{
/// <summary>
/// Summary description for $codebehindclassname$
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class People : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
为什么他们在顶部没有一行:
using System.Web.Services;
这是微软默认模板中的错误吗?我错过了什么吗?