473,394 Members | 1,739 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,394 software developers and data experts.

New ASP project

How do I create a new project in any location on my hard drive?
I dont like to have all my projects on C drive.

Thanks
Nov 18 '05 #1
7 1063
"Mark Goldin" <ma********@comcast.net> wrote in news:Oal2ET14DHA.3436
@tk2msftngp13.phx.gbl:
How do I create a new project in any location on my hard drive?
I dont like to have all my projects on C drive.


You can put them anywhere you want, but under VS you need to put them under
an IIS dir. Since IIS is almost always installed on C (Which is the most
common system drive), thats where it puts them by default.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
ELKNews - Get your free copy at http://www.atozedsoftware.com

Nov 18 '05 #2
Have no clue what you are talking about.
What is that: Under VS, under IIS?

"Chad Z. Hower aka Kudzu" <cp**@hower.org> wrote in message
news:Xn******************@127.0.0.1...
"Mark Goldin" <ma********@comcast.net> wrote in news:Oal2ET14DHA.3436
@tk2msftngp13.phx.gbl:
How do I create a new project in any location on my hard drive?
I dont like to have all my projects on C drive.
You can put them anywhere you want, but under VS you need to put them

under an IIS dir. Since IIS is almost always installed on C (Which is the most
common system drive), thats where it puts them by default.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
ELKNews - Get your free copy at http://www.atozedsoftware.com

Nov 18 '05 #3
when vs.net creates a web project. it creates a virtual directory under IIS
root. (default C:\Inetpub\wwwroot)
if you dont want C: then make sure you IIS is not in C:
one way would be to do a clean install and chose say D: as your installation
partition. in that case you will have C to yourself and can let VS to its
thing in D:

--
Regards,
HD
Once a Geek.... Always a Geek
"Mark Goldin" <ma********@comcast.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Have no clue what you are talking about.
What is that: Under VS, under IIS?

"Chad Z. Hower aka Kudzu" <cp**@hower.org> wrote in message
news:Xn******************@127.0.0.1...
"Mark Goldin" <ma********@comcast.net> wrote in news:Oal2ET14DHA.3436
@tk2msftngp13.phx.gbl:
> How do I create a new project in any location on my hard drive?
> I dont like to have all my projects on C drive.


You can put them anywhere you want, but under VS you need to put them

under
an IIS dir. Since IIS is almost always installed on C (Which is the most
common system drive), thats where it puts them by default.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
ELKNews - Get your free copy at http://www.atozedsoftware.com


Nov 18 '05 #4
"Mark Goldin" <ma********@comcast.net> wrote in news:#hz49R44DHA.1428
@TK2MSFTNGP12.phx.gbl:
Have no clue what you are talking about.
What is that: Under VS, under IIS?


VS = Visual Studio.

IIS = Internet Information Server - the webserver.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
ELKNews - Get your free copy at http://www.atozedsoftware.com

Nov 18 '05 #5
To make things simple:
There is no way to create a new project anywhere else but C.
Is that a true statement?

"Hermit Dave" <he************@CAPS.AND.DOTS.hotmail.com> wrote in message
news:e4**************@TK2MSFTNGP11.phx.gbl...
when vs.net creates a web project. it creates a virtual directory under IIS root. (default C:\Inetpub\wwwroot)
if you dont want C: then make sure you IIS is not in C:
one way would be to do a clean install and chose say D: as your installation partition. in that case you will have C to yourself and can let VS to its
thing in D:

--
Regards,
HD
Once a Geek.... Always a Geek
"Mark Goldin" <ma********@comcast.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Have no clue what you are talking about.
What is that: Under VS, under IIS?

"Chad Z. Hower aka Kudzu" <cp**@hower.org> wrote in message
news:Xn******************@127.0.0.1...
"Mark Goldin" <ma********@comcast.net> wrote in news:Oal2ET14DHA.3436
@tk2msftngp13.phx.gbl:
> How do I create a new project in any location on my hard drive?
> I dont like to have all my projects on C drive.

You can put them anywhere you want, but under VS you need to put them

under
an IIS dir. Since IIS is almost always installed on C (Which is the most common system drive), thats where it puts them by default.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
ELKNews - Get your free copy at http://www.atozedsoftware.com



Nov 18 '05 #6
You can try to move the project after you create it, but you'll need to make
sure IIS settings map to it as well.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
ELKNews - Get your free copy at http://www.atozedsoftware.com

Nov 18 '05 #7
Hi Mark,
By default VS.NET creates the project under c:\inetpub\wwwroot(The
drive letter is based on where IIS is installed).
If it is a web application a virual directory is created by VS.NET under
this directory with the project name given by you.

If you want to create that project somewhere else follow this procedure :

Create a directory first where you want to create the
project.For eg: call it MyProject under D:
* Then got to IIS and create a virtual directory with the name you want to
give the project.Eg : salesorder and choose the directory as
D:\MyProject.

* Then go to VS.NET and create a new web application,under the location
part give eg: http://localhost/salesorder (the name of the virtual
directory you created) and the project will be created under D:\MyProject.

Hope this answer your question.

Regards,
Marshal Antony
http://dotnetmarshal.com


"Mark Goldin" <ma********@comcast.net> wrote in message
news:Oa**************@tk2msftngp13.phx.gbl...
How do I create a new project in any location on my hard drive?
I dont like to have all my projects on C drive.

Thanks

Nov 18 '05 #8

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

Similar topics

0
by: public heath vb developer | last post by:
We have a solution with 29 projects including a main menu and 28 dlls. One of the projects (Project B) was created by copying an existing project (Project A), making changes including the assembly...
2
by: Rudy Ray Moore | last post by:
How can I modify the project build order of a multi-project workspace under "Visual Studio .net 2003 7.1 c++"? I tried to modify the .sln by hand to influence the build order, but it didn't seem...
1
by: Jerad Rose | last post by:
Hello, I have searched all over for the answer to this, to no avail. I have a web project already set up and running on a remote server, that I created from my home computer. I am now trying...
11
by: Dave | last post by:
I copied the project files from an ASP.NET project on one computer and want to create the project on another computer, There is no connection between the two computers so I simply copied the...
4
by: Brad | last post by:
I'm not one to rant or flame....so please excuse me while I do so for this once. I've now spent a bit of time working with VS2005 beta 2 to see how it functions for web development, especially how...
7
by: Mantorok | last post by:
Hi all We have an ASP.Net project (and the Solution) under source-control. Here is the example - I create the Solution, I create an ASP.Net project and then check it all in to source control,...
6
by: liu | last post by:
Hi all, in my vb.net solution, i have 3 project: 1. Main-this is the startup or the base of my window application. 2. Sales-this is the project that contains all the sales info 3. Product-this...
9
by: Anubhav Jain | last post by:
Hi, I am having few .net source files(.cs or .vb) and I want to dynamically generate the corresponding .net project file(.csproj or .vbproj) for them without using visual studio.So that I could...
3
by: Jerad Rose | last post by:
This is regarding Visual Studio 2003 (framework 1.1). We have several projects/libraries. Of course, many of these reference each other. If we only had one solution, we would simply add all of...
29
by: Tony Girgenti | last post by:
Hello. I'm developing and testing a web application using VS.NET 2003, VB, .NET Framework 1.1.4322, ASP.NET 1.1.4322 and IIS5.1 on a WIN XP Pro, SP2 computer. I'm using a web form. How do I...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.