views:

28

answers:

1

For some reason when I am trying to create a class which implements IHttpHandler I cannot resolve IHttpHandler.

Statements like:

using System.Web;

are not helping either.

This is a class library project, I am following example here: http://www.15seconds.com/issue/020417.htm

What am I doing wrong?

+4  A: 

Ensure that you are referencing System.Web from you project.

Rohan West