Visual Studio :: Is It Better To Create Separate Web Applications (with It's Own Solution) For Each Web Site

Nov 15, 2010

I'm working with VS2010 and I wonder should I use one Solution for multiple web applications (web sites) or is it better to create separate web applications (with it's own solution) for each web site?

View 4 Replies


Similar Messages:

Visual Studio Solution With Multiple ASP Web Applications

Mar 3, 2011

I've got a Visual Studio 2010 solution that has multiple web applications in it. I've set one as the startup project but when I debug Visual Studio is starting up a development server for each web application in my solution. Is there anyway I can have Visual Studio only start up the development server for just the default startup project?

View 2 Replies

.net - Two Web Applications In The Same Solution - How Can I Keep Them Separate?

Mar 22, 2010

I have two web applications in the same solution.They both use different membership/profile and role providers.They are named differently. When I run the solution, and visit one website, and login everything is fine.I then go to the other website, it thinks I am already logged in and the profile provider tries to load profile properties that do not exist.How can I keep them separate, so when I try to log in on one site, it doesn't think I'm still logged in on the other.

View 1 Replies

Visual Studio :: How To Create A Solution With Project

Aug 12, 2010

I have to modify a exist web application in Asp .Net, the problem is that I have the application just on the server.

I copy the application on my pc but now I have to create the appropriate solution and project to modify it.

I've all the file .cs and the dll already deployed.

How can I create the web application with .net ?

View 1 Replies

Visual Studio :: VWD 2010 Express - How To Create A Solution

Jun 28, 2010

how to create an empty Solution in Visual Web Developer 2010 Express Edition.

File > New Project, and then -- where?

Maybe it's now allowed? I can't work with solutions at all then?

View 2 Replies

Visual Studio :: Create A Solution From An Existing One Already In Source Control?

Nov 19, 2010

We are using VS Ultimate. One developer has created a solution (xyz) which is displayed in Team Explorer and Source Control Explorer. I want to create a local Solution using his existing Solution. How can I do this? I started with File/New Project. I gave it a name and it now displays in Solution Explorer as 'Solution 'xyz_solution' (0 Projects). Already existing in Source Control is a folder named 'xyz Solution'. I want to populate my solution with this?

View 1 Replies

Visual Studio :: Add The Ability To Create Hybrid Applications?

Feb 3, 2011

I just read the MSDN Magazines article on Dynamic Data and it got me wandering, could I use this in MVC3? Then with a little research the answer is yes, but you have to copy all these assemblies, modify the global.asax file etc. The same if one wanted to use web forms and MVC3. Wouldn't it just be easier to be able to choose a blend option when creating a new application in VS? My suggestion would be if one wanted to create a hybrid application that blended two different application styles, one could just choose multiple apps at the start, such as MVC3 and Dynamic data; and VS would just add or modify the necessary references so one could use the two development styles in a single application.

I realize that some would say this would probably defeat the purpose of the different styles, but if developers are gong to do it anyway, why not be supportive. What did Emerson say? "A foolish consistency is the hobgoblin of little minds".

View 1 Replies

Visual Studio :: Trying To Add A Class Library To A Solution In Vs2008 But Solution Icon Disappears?

Mar 20, 2010

I'm trying to create a .NET solution and add class libraries to it. First - in VS2008 I go to File > New > Project > Other Project Types > Visual Studio Solutions > Blank Solution. Then - after VS2008 creates the blank solution I right click on the solution and select Add > New Project > Visual C# > Class Library. However, when I add the Class Library to the solution, the solution icon disappears from Solution Explorer (although the solution name is still in the VS2008 title bar). Why does the solution icon disappear
from the Solution Explorer when I attempt to do this?

View 2 Replies

Visual Studio :: Can Not Create An C# ASP.NET Web Site From Visual Studio 2010

May 27, 2010

I downloaded a trial version of Visual Studio 2010, created a new c# Solution and then wanted to add an ASP.NET Web Site. I am Folllowing an example in a book: ASP.NET 3.5 Enterprise Application Development with Visual Studio 2008.In the book they write that a template for createing an c# ASP.NET Web Site would be found, but whereever I search for o template in VisualStudio I cant find that for c#, I could find it for VisualBasic but that is not wath I want!

View 1 Replies

Visual Studio :: Solution Explorer Not Showing Solution Name - VS 2008

Sep 10, 2010

I am stumped by a serious issue in Vs 2008.

I created a Blank solution called HelloWorld.Then I added a new Class Library project by the name of HelloWorldService.After creation of the

Class Library project the Solution name disappeared from Solution Explorer.

As a result of which I can now only add new items into the Class Library project but cannot add new item to the solution.

This appears to be a pretty old problem as I found it in another link on the internet.

[URL]

It seems to be a bug.Has MS released a patch or a fix for this.

View 6 Replies

Configuration :: Way To Create 3.5 Web Site With Visual Studio 2010

Mar 19, 2011

I've tried all kinds of searches on this site and with Bing and don't seem to get any hits that meet my condition. So pardon me if this is a rather basic question. I'm rather new at ASP.NET programming.I want to experiment with putting up to a live site. GoDaddy gives you free hosting if you get the URL from them. The catch is the hosting only supports IIS 7.0 with .Net 2.0/3.0/3.5. I've uploaded all kinds of plain websites with no problem. So in Visual
Studio 2010 I selected the following options while creating a new project:

<customErrors mode="Off" />
<!--<compilation debug="true" targetFramework="4.0">-->
<compilation debug="true" >
<assemblies>
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
</compilation>

I tried various solutions offered on the web for other issues like setting References "Copy Local = true" to upload various binaries.

View 4 Replies

Architecture :: Visual Studio And Database Express To Create A Web Site?

Jan 20, 2011

I am using the Visual Studio 2010 Express to create a web site.I created a database using SQL Express,but I decided to copy the mdf file to App_Data folder thinking I then might not need SQL Server running.I used the connection string that points to the database file in App_Data.

I deployed it to the server (Windows 2000 server with .Net 2.0 and SQL Server 2000) using Copy Web Site.I got the following error.An error has occurred while establishing a connection to the server.When connecting to SQL Server 2005,this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.(provider: SQL Network Interfaces,error: 26 - Error Locating Server/Instance Specified)

My questions are

1. Do I still need SQL Server running even if I used a database in App_Data?
2. On the server SQL Server 2000 is running,why does the error say SQL Server 2005?
3. Are there anything that I have to consider beyond the version of Framework when deploying after development with VS 2010 (Framework 4.0)?

View 2 Replies

Visual Studio :: How To Convert Whole Visual Studio 2008 Web Site Project To Visual Studio 2010

Aug 14, 2010

is it possible to convert whole visual studio 2008 web site project to visual studio 2010 web site project

my current project references

i have a very annoying iis problem

iis server stops working until app pool is recycled

i am hoping that new visual studio (net framework 4.0) may solve this very annoying unsolveable problem

View 2 Replies

Visual Studio :: Solution Explorer Only Creates Visual Basic LinqToSql Classes?

Feb 14, 2010

Even though I when I create a linqtosql class I mark C# as the language it was always shows up as a Visual Basic file in the App Code file. I can't get it to stop doing that. ????? What is going on?

View 5 Replies

How To Open A Solution In Visual Studio

Feb 4, 2011

I have a website which was created by someone; now I am trying to open it.

My doubt is will that project contain a solution? Within Visual Studio, I am trying to open through the open website option, but I didn't find a solution.

Is that right way? How best can I open a website with Visual Studio?

View 4 Replies

Visual Studio :: Solution Not Opening - Getting Error?

Mar 23, 2011

I have first installed VS2005 and then installed VS2008. After installing, whenever i create a solution in VS2008, i am able to create it properly. if i double-click the solution file, i am able to open the project. Recently i had a problem in my IIS 5.1 and i uninstalled it and the installed it again. After doing that whenever i try to open a VS2008 solution file, i am getting the following error The selected file is a solution file, but was created by a newer version of this application and cannot be opened.". I even tried creating a blank solution using

File->New->Project->Other Project Types-> Visual Studio Solutions-> Blank Solution.

I then added a new project to this solution. I closed the solution and again when i double-click on the newly created solution file i am getting the same error as previous one. I found some solution in the net, tried that and didn't work at all.

View 2 Replies

Rebuild Solution In Vs2008 Without Visual Studio?

Apr 1, 2010

How can we Rebuild solution in vs2008 without visual studio?

View 1 Replies

Visual Studio :: Adding A SQL Database To A Solution?

Jul 6, 2010

As is shown here

[URL]

I do not have SQL Express installed as I already have SQL 2008 (Developer) on my Dev machine. When I say add new item -> SQL Database, give it a name and say "yes" to it creating me the app folder I then get the message that I need to have SQL Express installed and I can download it from blah blah.

Why will it not let me use/recognise my installed instance of SQL Server?

View 5 Replies

Visual Studio :: Use F# For Web Applications?

May 5, 2010

I am started working in Visual Studio 2010. But i founf F# is for developing console appplication only. Now f# support console application only or can i use for my web / windows applications also?

View 2 Replies

Visual Studio :: Trying To Setup A Site Where A User Can Create An Account, Log In And Have Access To Only Their "home Page"?

Nov 24, 2010

Newer to ASP (not VB). Running VS 2010 Ult. Basically I just need pointed in the right direction for what I am trying to accomplish. I am trying to setup a site where a user can create an account, log in and have access to only their "home page". On that home page I want them to be able to have access to their data and their data only. I have created the web site and the login, create user, change password, ect. pages using the built in controls, problem is that about the extent of my ASP'ing.

I would just like pointed in the right direction to be able to code this. Not asking for someone else to do it for me, I want to learn this on my own. I just need pointed somewhere to get me started with member pages and what not.PS - This is what I am looking to doCreate account -> Automatically create user folder and home page within -> Restrict access to only the new user and the admin

View 1 Replies

Visual Studio :: Adding Solution To TFS Source Control?

Apr 26, 2010

I have a TFS Server all set up, I can connect to it, see the collection and i have created a new project.

When I create a new project in VS2010 and right click on the solution and select add to source control,

I get the following error:

[Code]....

View 1 Replies

Visual Studio :: One Project In Solution Opens As Website Not Web App?

Feb 24, 2010

this seems to be a problem only on my new PC, not my prior PC or my coworkers PCs. But, as far as I know, I have installed VS2005 the same way, including the VS80-KB915364-X86-ENU.exe and WebApplicationProjectSetup.msi additions.

I have a VS2005 Solution called 'Intranet' made up of several web projects. One of those web projects is also called 'Intranet'. All of the projects should load as Web Application Projects, which they did on my prior PC.

Now, the 'Intranet' project seems to be opening as a Web Site project. The name of the project in the solution now shows as "C:...Intranet" instead of just "Intranet" and is not recognized as being part of the SourceSafe project(no lock icon shows). If I right-click this project, "Build Web Site" is one option.

View 3 Replies

Visual Studio :: Can't Change The Code In Solution (Project)

Oct 14, 2010

I have problem using Visual Studio.NET 2003. When I open solution made early ago, choose the code of the existing .aspx page, could not change it, because when type nothing happened, no letter, no sign, like the keyboard is "dead" (but it is not, ofcourse).

View 6 Replies

Visual Studio :: Pass Values Between Different Project In Same Solution?

Jan 21, 2011

I have a solution file with 2 projects inside, one will be handling the presentation portion and the other is for database data retrieval. I was wondering if its possible to pass a value from the presentation.aspx in the "presentation" project to the db.aspx in the "database" project? They are both in the same solution file.

View 8 Replies

Visual Studio - Multiple Solution Layout For .NET Web Portal?

Dec 25, 2010

At work, we've developed a custom ASP.NET Web Portal (That's very similar to iGoogle). We have "Apps" (self-contained, large web forms) and "Modules" (similar to Google Gadgets).Currently, we use a single-solution model. Right now, we have:

3 core projects
60 application projects
80 module projects

To reduce copy and pasting between projects, we're going to factor out common functionality (Data Access, Business Logic) into separate projects. I'd also like to introduce Unit Tests, which is going to increase the number of projects even more.We've already reached the point where Visual Studio is choking on the number of projects. We generally only load the 3 core projects and then whatever app's/module's project we're working on.Would a different solution structure help us out? Our number of projects is only going to increase.

In general, an app or module only references the 3 core projects. Soon, apps/modules may start referencing the Data Access/Business Logic projects. But in general, apps and modules do not make references between themselves.So to recap, what is the best practice for solution structure when there are MANY projects that use a small number of core projects?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved