>When debugging, there is a squiggly blue line under each namespace.
I assume you mean in the code editor. That means it can't find your namespace in any of the currently referenced DLL's. You need to have a reference to a DLL in order to use any of it's objects.
>I recreated the structure e.g. ACCOUNTSBUSINESS and the Module/Users
> reside in the same PHYSICAL directory and must do so... when they do
>then the namespaces work.
You're making a mistake somewhere. Foldernames are NOT tied to namespaces. We pick foldernames to make it easier for us to manage our own files.
The big question is: what DLL's did you reference? This brings in the metadata and lets you use those objects. No reference, and you'll get a squiggly line, and the compile will blow up.
>If I wanted to import just the User Accounts module into a new Solution
>(which is essentially what I would like to do)...
Wow - you picked the hardest module to use in another project. That module relates to the security underpinnings, including the base page all user pages inherit from.
Do you need a public area of you site, and then a separate area where people have to log in? Or, do you want all your users logged in?
You should do some research on user authentication and authorization in ASP.NET. I don't think you really want to use ThePhile if the only module of interest to you is the User module. That's a little like buying a new car because you want to use it's engine in another car you have lying around. It would be easy to take the radio and put it in another car, but moving the engine is a lot of work!
Eric
|