ASPX and Module?

The following will link the assembly containing your module to the ASP.NET page DLL as its compiled:
Code:
<%@ Assembly Name="MyAssembly" %>
 
What value of MyAssembly should I put?

There is no error when I put the project name, but it still cannot call function in my module

Sorry, I not really undertand...
 
When you compile your project it should produce a DLL with a filename ending in "*.dll". Take whatever the name of the DLL is, without the extension and place that in the Name attribute, as shown above.
 
Back
Top