How can I create two .NET projects in the same domain

I have two .NET projects on the same domain. The first project I created a long time ago in VB.NET. Now I am creating another project that I have built in C #. How do I set up my new project on the same domain so that I can access new forms that I have created in C #. Do I need to send an entire folder from a project? Do I need to change anything in the web.config? I am getting this error right now. [PhoneControl] is a new C # project. http://www.martinesexpress-inc.com/PhoneControl/Default.aspx

+2


source to share


2 answers


If you look at the error page, it says:

alt text http://img246.imageshack.us/img246/5868/capturevv.png

Version Information: Microsoft .NET Framework Version:1.1.4322.2407; 
ASP.NET Version:1.1.4322.2407 

      



And you are trying to use some .NET 3.5 components

Change the website to use .Net 2.0 and make sure the server has .NET 3.5 SP1 installed

If you are using IIS6:
alt text http://img185.imageshack.us/img185/1410/capture2s.png

+1


source


Are you declaring the language correctly on your page?



0


source







All Articles