Darinel
Darinel

Reputation:

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

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

Upvotes: 2

Views: 308

Answers (2)

Eduardo Molteni
Eduardo Molteni

Reputation: 39453

If you look in 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 have .NET 3.5 SP1 installed

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

Upvotes: 1

John Lockwood
John Lockwood

Reputation: 3875

You're declaring the language correctly in your page?

Upvotes: 0

Related Questions