Author: mrwiz | Posted on: 4/20/2010 9:50:09 AM | Views : 853

So, I just converted a project from .net 2.0 to .net 3.5.  It's all done in VB.  Each application (page) has it's own .aspx, .aspx.vb, and .aspx.resx file.  Now, one of the pages (homepage.aspx), I rewrote in C#.  The problem I'm having is getting this C# page into the VB project.  Now, I've read about doing something like this in the Web.Config:

<SYSTEM.WEB> <COMPILATION> <CODESUBDIRECTORIES> <ADD directoryName="vbcode" /> <ADD directoryName="cscode" /> </CODESUBDIRECTORIES> </COMPILATION> </SYSTEM.WEB>

This supposedly makes it so you'll have to use a vbcode and a cscode directory within the App_Data folder, but I can't seem to get this working for me.  Can anyone guide me through this?
I simply want to add additional .aspx, .aspx.cs, and .aspx.designer.cs files.

Go to the complete details ...