calling aspnet DLL

  • Thread starter Thread starter Vai2000
  • Start date Start date
V

Vai2000

Hi All, I have an ASPX Application. Now I have to write a WinSvc which
actually uses 95% of the functionality present in the aspx application. I
was thinking of calling the aspx DLL from my WinSvc.

Problem:
ConfigurationSettings.AppSettings is out of scope...


Any clues? Suggestions...?

TIA
 
Extract all the logic from ASPX application into a Class Library
Project, then reference that project from your ASPX application and
your WinSvc.

Mike
 
add a using of the name space, or fully qualify the name

using "System.Configuration";

-- bruce (sqlwork.com)
 

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