I set up a master project and then added six sub-projects. All looks well and compiles. To start, I have the default page in my _Control project do a : Response.redirect("cis/loginform.aspx",true). All goes well until it gets to the cis directory, where the global/web.config/loginform exist. I immediately get the following error:
Parser Error
Could not load type cis.global
it references the globla.asax file, line 1: <%@ Application ... Inherits="cis.Global"%>
After some research it appears this is a namespace issue, but I don't know how to correct it. If I move the global file to the _Control project it works but then I get the same error on cis.loginform
I'm at a dead end ... but have to make this work. Can I make the cis project the major project, but then get errors going to the other 5 projects?
Any help would be most appreciated.
Thanks