473,385 Members | 1,720 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Cannot not see solution node?

kai
Hi,
I use XP Pro and VS2005. I find when I create a new Website, I only see the
Project node not Solution. After I add sedcond project under the solution
tree, then I see the solution node.

How do I setup VS2005 to see the solution node after I create the first
project without adding the second project in the same solution?

Thanks

kai
Nov 23 '05 #1
5 2197
vs2005 websites don't have a project file (only a file dir), so no solution
file is required for websites.

the vs2005 philosophy is to not create any file until you ask for it. thus
no solution, web.config, global.asax or any those other files vs2003
generated when you created a new website. if you reference another project,
then a solution file is generated.

-- bruce (sqlwork.com)
"kai" <ka******@earthlink.net> wrote in message
news:as*****************@newsread2.news.atl.earthl ink.net...
Hi,
I use XP Pro and VS2005. I find when I create a new Website, I only see
the Project node not Solution. After I add sedcond project under the
solution tree, then I see the solution node.

How do I setup VS2005 to see the solution node after I create the first
project without adding the second project in the same solution?

Thanks

kai

Nov 23 '05 #2
Hi Kai,

As Bruce has mentioned, the ASP.NET 2.0 project in VS2005 is different from
orginal one in vs2003. The VS2005 asp.net 2.0 project is treated as a
single alone website(just a normal folder with well-defined folder
structure...). If you do need a Solution to contain it, we can either:

1. We can create an Empty Solution before creating the Web Project and add
our web project in the Empty solution....

2. By default VS2005 ide will create solution for our projects which is
unde My document\visual Studio Projects folder, you can also check there to
see whether your asp.net project's solution file is there.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: "Bruce Barker" <br******************@safeco.com>
| References: <as*****************@newsread2.news.atl.earthlink. net>
| Subject: Re: Cannot not see solution node?
| Date: Tue, 22 Nov 2005 15:43:31 -0800
| Lines: 27
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| X-RFC2646: Format=Flowed; Response
| Message-ID: <eQ**************@TK2MSFTNGP11.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: rdcsd1.safeco.com 12.144.134.2
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP11.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:360290
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| vs2005 websites don't have a project file (only a file dir), so no
solution
| file is required for websites.
|
| the vs2005 philosophy is to not create any file until you ask for it.
thus
| no solution, web.config, global.asax or any those other files vs2003
| generated when you created a new website. if you reference another
project,
| then a solution file is generated.
|
| -- bruce (sqlwork.com)
|
|
| "kai" <ka******@earthlink.net> wrote in message
| news:as*****************@newsread2.news.atl.earthl ink.net...
| > Hi,
| > I use XP Pro and VS2005. I find when I create a new Website, I only see
| > the Project node not Solution. After I add sedcond project under the
| > solution tree, then I see the solution node.
| >
| > How do I setup VS2005 to see the solution node after I create the first
| > project without adding the second project in the same solution?
| >
| > Thanks
| >
| > kai
| >
|
|
|

Nov 23 '05 #3
On Tue, 22 Nov 2005 15:43:31 -0800, "Bruce Barker"
<br******************@safeco.com> wrote:
vs2005 websites don't have a project file (only a file dir), so no solution
file is required for websites.


The solution file does exist for a web site project.

The solution file is not visible in Solution Explorer unless it feels
it needs to be.

To make the solution visible, go to Tools -> Options -> Projects &
Solutions, and check "Always show solution".

--
Scott
http://www.OdeToCode.com/blogs/scott/
Nov 23 '05 #4
Thanks a lot for Scott's informative input.

Hi Kai,

Does this helps you on the problem?

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: Scott Allen <sc***@nospam.odetocode.com>
| Subject: Re: Cannot not see solution node?
| Date: Wed, 23 Nov 2005 13:57:57 -0500
| Message-ID: <lq********************************@4ax.com>
| References: <as*****************@newsread2.news.atl.earthlink. net>
<eQ**************@TK2MSFTNGP11.phx.gbl>
| X-Newsreader: Forte Agent 1.8/32.548
| MIME-Version: 1.0
| Content-Type: text/plain; charset=us-ascii
| Content-Transfer-Encoding: 7bit
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: dyn-170-243-42.myactv.net 24.170.243.42
| Lines: 1
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:360532
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| On Tue, 22 Nov 2005 15:43:31 -0800, "Bruce Barker"
| <br******************@safeco.com> wrote:
|
| >vs2005 websites don't have a project file (only a file dir), so no
solution
| >file is required for websites.
| >
|
| The solution file does exist for a web site project.
|
| The solution file is not visible in Solution Explorer unless it feels
| it needs to be.
|
| To make the solution visible, go to Tools -> Options -> Projects &
| Solutions, and check "Always show solution".
|
| --
| Scott
| http://www.OdeToCode.com/blogs/scott/
|

Nov 24 '05 #5
Hi Kai,

Does Scott's information helped you got resolved the problem? If there're
anything else we can help, please feel free to post here.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| X-Tomcat-ID: 22304430
| References: <as*****************@newsread2.news.atl.earthlink. net>
<eQ**************@TK2MSFTNGP11.phx.gbl>
<lq********************************@4ax.com>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: st*****@online.microsoft.com (Steven Cheng[MSFT])
| Organization: Microsoft
| Date: Thu, 24 Nov 2005 01:02:56 GMT
| Subject: Re: Cannot not see solution node?
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| Message-ID: <Vo**************@TK2MSFTNGXA02.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Lines: 42
| Path: TK2MSFTNGXA02.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:360601
| NNTP-Posting-Host: tomcatimport2.phx.gbl 10.201.218.182
|
| Thanks a lot for Scott's informative input.
|
| Hi Kai,
|
| Does this helps you on the problem?
|
| Regards,
|
| Steven Cheng
| Microsoft Online Support
|
| Get Secure! www.microsoft.com/security
| (This posting is provided "AS IS", with no warranties, and confers no
| rights.)
| --------------------
| | From: Scott Allen <sc***@nospam.odetocode.com>
| | Subject: Re: Cannot not see solution node?
| | Date: Wed, 23 Nov 2005 13:57:57 -0500
| | Message-ID: <lq********************************@4ax.com>
| | References: <as*****************@newsread2.news.atl.earthlink. net>
| <eQ**************@TK2MSFTNGP11.phx.gbl>
| | X-Newsreader: Forte Agent 1.8/32.548
| | MIME-Version: 1.0
| | Content-Type: text/plain; charset=us-ascii
| | Content-Transfer-Encoding: 7bit
| | Newsgroups: microsoft.public.dotnet.framework.aspnet
| | NNTP-Posting-Host: dyn-170-243-42.myactv.net 24.170.243.42
| | Lines: 1
| | Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| | Xref: TK2MSFTNGXA02.phx.gbl
| microsoft.public.dotnet.framework.aspnet:360532
| | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| |
| | On Tue, 22 Nov 2005 15:43:31 -0800, "Bruce Barker"
| | <br******************@safeco.com> wrote:
| |
| | >vs2005 websites don't have a project file (only a file dir), so no
| solution
| | >file is required for websites.
| | >
| |
| | The solution file does exist for a web site project.
| |
| | The solution file is not visible in Solution Explorer unless it feels
| | it needs to be.
| |
| | To make the solution visible, go to Tools -> Options -> Projects &
| | Solutions, and check "Always show solution".
| |
| | --
| | Scott
| | http://www.OdeToCode.com/blogs/scott/
| |
|
|

Nov 29 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Colman | last post by:
Howdy all! I guess I'm a newbie, because I am stumped (or maybe just too durned tired). Here's what I got... CREATE TABLE `nodecat_map` ( `nodecat_id` mediumint(8) unsigned NOT NULL...
2
by: Michael Lee | last post by:
Does anyone know why the following function works in FireFox but not in IE6? function ShowTable() { clonedNode = document.getElementById("myTable").cloneNode(true); win = window.open();...
19
by: Mountain | last post by:
I would like opinions on whether this solution could be important and whether anyone knows if it is already solved. (I would also like to know if anyone thinks it cannot be solved.) First, we...
2
by: steevehetu18 | last post by:
Hi, I'm doing a algorithm to calcule Earliest Start et Latest Start for a Graph with Nodes and Arcs. (like a PERT diagram) . Unfortunatly, i receive a wierd exception message for a specific...
7
by: vunet.us | last post by:
I cannot append a node from XML into the HTML dom (textarea field) in IE. But I can for the text input html elements! Is anyone aware of this and what is the possible solution? Thanks.
4
by: sirjohnofthewest | last post by:
If I possessed the power to sway the mind of every user in the world to delete all forms of Internet Explorer I would die a happy man. Hi guys, I frequently visit this site to get answers to my...
9
by: reachmsn | last post by:
Hi, At the url http://www.python.org/doc/essays/graphs.html there is some code by Guido Van Rossum for computing paths through a graph - I have pasted it below for reference - Let's write a...
1
by: Miro | last post by:
I am going throug a vb 2005 book, but I am using vs 2008 professional, and I cant seem to find a menu option its talking about. I am wondering if this has moved - i cannot seem to find it for the...
9
by: GaryDean | last post by:
I know this is a vs issue but nobody seems to answer posts over there... In VS 2008 I can't seem to get a multiple project solution. If I create a blank solution and add a project to it, it...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.