I'm having a lot of trouble importing a DLL to use. I have an aspx page with no code behind, no virtual directories.
All I know about the DLL is it's filename 'GenerateExcel.dll' and namespace 'Xander.Utilities'. How do I import it with either of these
<%@ Assembly Src="./bin/GenerateExcel.dll" %> <%@ Import Namespace="Xander.Utilities" %> It's not working. I read the other threads on SO and still having trouble.
alt text http://img406.imageshack.us/img406/8021/62535719.gif
EDIT: I use it like this:
<script runat="server"> protected void Page_Load(object sender, EventArgs e) { //... Xander.Utilities.ExcelMaker em = new Xander.Utilities.ExcelMaker(); //... }