Newbie: Grouping Commonly-used Methods

  • Thread starter Thread starter Myk Quayce
  • Start date Start date
M

Myk Quayce

I'm trying to bunch common methods in one external file that can be accessed
from several .aspx files.

I've tried compiling a .cs file into a dynamic-link library, and even though
the line below works, I still can't access any of its methods.

<%@ reference page="WorkerClass.dll" %>
 
Add a module. This can contain multiple methods that can be called from any
page in the application. Just make sure you make proper ones public so that
they can be accessed externally.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top