My host has done the mapping and I have created an httphandler (handler.ashx) residing in app_code
<%@ WebHandler Language="VB" Class="DocHandler" %>
Imports System
Imports System.Web
Public Class DocHandler : Implements IHttpHandler
    
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
        context.Response.ContentType = "application/msword"
        context.Response.Write("You must be logged in to access these files")
    End Sub
 
    Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
        Get
            Return False
        End Get
    End Property
End Class
 
but am getting an error...
Parser Error Message: Could not load type 'App_Code.DocHandler'.