2

为什么 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;

这是微软默认模板中的错误吗?我错过了什么吗?

4

1 回答 1

4

编辑:我现在看到了,当您将通用处理程序添加到 Web应用程序时(抱歉,我第一次在您的问题中错过了)我得到了新的无效模板。我同意其他用户的观点,即您应该只编辑默认模板。但是,如果您使用的是 MVC,则不再需要处理程序。

看起来这是一个已知的错误,这是它的 MS Connect 问题

如果你想编辑模板,它位于:C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Web\1033\Handler.zip

于 2009-02-02T23:25:11.977 回答