Hi all this is my first post so forgive me of any faux pas I may commit. I am haing trouble accessing a class library that I have written in vb.net from an aspx page. Here is the code:
Code:
<%@ Page Language="VB" Debug="true" CompilerOptions='/R:"C:\Inetpub\wwwroot\ASPDLLTest.dll"'%>

<% 

Dim mydll as new ASPDLLTest.ASPTestClass

Response.Write(mydll.HelloWorld())

%>
The error that I am receiving is this:
System.IO.FileNotFoundException: File or assembly name ASPDLLTest, or one of its dependencies, was not found.

Is this a security issue or am I way off base with my call to the library?

Thanks for the help.