文件结构如图在Default.cs中default类可以使用
using dllname
namespace WebApplication7
{
    public partial class Default : System.Web.UI.Page
    {
        可以使用
        protected void Page_Load(object sender, EventArgs e)
        {            
        }
    }
}
using dllname
在Handler.ashx中 handler类不能使用DLL
namespace WebApplication7
{
    public class Handler : IHttpHandler
    {
     }
}