473,657 Members | 2,597 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Question with regards to VS.NET2005 IDE and ASP.NET 2.0

Hi,

I understand that be default VS2005 uses the ASP.NET development server to
run and test ASP.NET applications. Is it possible that we use IIS for
ASP.NET application debugging in new IDE environment?

Thank you,

Alan
Jan 11 '06 #1
11 1448
Yes,

When you create a web application you have the option to create it right in
IIS. This is how I create all of my websites (I use virtual sites within IIS
on my machine and keep the files in a folder in a separate location):

1. File - New - Website
2. In the "New Web Site" window that opens set the location drop down near
the bottom of the window to "HTTP"
3. Select the language of your choice for the website.
3. Click the "Browse" button.
4. In the "Choose Location" window make certain that Local IIS is selected
in the menu on the left.
5. Click the top right folder icon "Create New Virtual Directory".
6. Set the alias name to the name you want for the website.
7. Browse for and/or create the file folder to hold the website files in the
location of your choice.
8. Click the "OK" button.
9. Select the new website in the center list of websites by clicking on it
to highlight it.
10. Click the "Open" button.
11. Back in the "New Web Site" window you should see something like:
http://localhost/[your website name here].
12. Click the "OK" button.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"A.M-SG" <al******@newsg roup.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
Hi,

I understand that be default VS2005 uses the ASP.NET development server to
run and test ASP.NET applications. Is it possible that we use IIS for
ASP.NET application debugging in new IDE environment?

Thank you,

Alan

Jan 11 '06 #2
Hi Justin,

That is good to know. Is there any way to convert an existing applications
to IIS?

Thank you for help,
Alaln
"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate. com> wrote in
message news:uv******** ******@TK2MSFTN GP12.phx.gbl...
Yes,

When you create a web application you have the option to create it right
in IIS. This is how I create all of my websites (I use virtual sites
within IIS on my machine and keep the files in a folder in a separate
location):

1. File - New - Website
2. In the "New Web Site" window that opens set the location drop down near
the bottom of the window to "HTTP"
3. Select the language of your choice for the website.
3. Click the "Browse" button.
4. In the "Choose Location" window make certain that Local IIS is selected
in the menu on the left.
5. Click the top right folder icon "Create New Virtual Directory".
6. Set the alias name to the name you want for the website.
7. Browse for and/or create the file folder to hold the website files in
the location of your choice.
8. Click the "OK" button.
9. Select the new website in the center list of websites by clicking on it
to highlight it.
10. Click the "Open" button.
11. Back in the "New Web Site" window you should see something like:
http://localhost/[your website name here].
12. Click the "OK" button.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"A.M-SG" <al******@newsg roup.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
Hi,

I understand that be default VS2005 uses the ASP.NET development server
to run and test ASP.NET applications. Is it possible that we use IIS for
ASP.NET application debugging in new IDE environment?

Thank you,

Alan


Jan 11 '06 #3
Personally I always start with ASP.NET File System application and then
manually hook up IIS. (Using the ASP.NET development server is
downright dangerous - your code would run with many more permissions
than you would under IIS)

To manually hook up IIS. Simply create a Virtual Directory in IIS
Admin, e.g. http://localhost/MyApplication/ pointing to your 'web
project'.

Go back into VS2005 and right click on your web project and choose
Propery Pages from the menu. Under startup options you should be able
to choose a custom server and enter a base url - choose that option and
enter http://localhost/MyApplication/ as your base url.

Bingo!

I've been meaning to post about the danger of the ASP.NET Development
Server for a while now... tomorrow maybe! :)

Josh
http://www.thejoyofcode.com/

Jan 11 '06 #4
Alaln,

Sorry, I haven't attempted that. The first time I realized I wanted to use
IIS instead of the new file system (I had tried the file system with a
simple app.) I only had one page so far, so I just copied and pasted my
code. My "partner-in-crime" says he converted one, but he doesn't remember
exactly what he did... So it's possible, but he says he had to fool around
with a lot of settings. He's trying to remember just what he did. If he can
verify how he did it I'll post what he remembers.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"A.M-SG" <al******@newsg roup.nospam> wrote in message
news:Oe******** ******@TK2MSFTN GP15.phx.gbl...
Hi Justin,

That is good to know. Is there any way to convert an existing applications
to IIS?

Thank you for help,
Alaln
"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate. com> wrote in
message news:uv******** ******@TK2MSFTN GP12.phx.gbl...
Yes,

When you create a web application you have the option to create it right
in IIS. This is how I create all of my websites (I use virtual sites
within IIS on my machine and keep the files in a folder in a separate
location):

1. File - New - Website
2. In the "New Web Site" window that opens set the location drop down
near the bottom of the window to "HTTP"
3. Select the language of your choice for the website.
3. Click the "Browse" button.
4. In the "Choose Location" window make certain that Local IIS is
selected in the menu on the left.
5. Click the top right folder icon "Create New Virtual Directory".
6. Set the alias name to the name you want for the website.
7. Browse for and/or create the file folder to hold the website files in
the location of your choice.
8. Click the "OK" button.
9. Select the new website in the center list of websites by clicking on
it to highlight it.
10. Click the "Open" button.
11. Back in the "New Web Site" window you should see something like:
http://localhost/[your website name here].
12. Click the "OK" button.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"A.M-SG" <al******@newsg roup.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
Hi,

I understand that be default VS2005 uses the ASP.NET development server
to run and test ASP.NET applications. Is it possible that we use IIS for
ASP.NET application debugging in new IDE environment?

Thank you,

Alan



Jan 11 '06 #5
Hmmm, I got Josh's post right after mine...

Looks good Josh. You should try creating the virtual directory from the
get-go. It's really nice. It looks like a lot of steps because I spelled out
each and every button click, but it's quite simple.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"S. Justin Gengo [MCP]" <justin@[no_spam_please]aboutfortunate. com> wrote in
message news:Ow******** ******@TK2MSFTN GP11.phx.gbl...
Alaln,

Sorry, I haven't attempted that. The first time I realized I wanted to use
IIS instead of the new file system (I had tried the file system with a
simple app.) I only had one page so far, so I just copied and pasted my
code. My "partner-in-crime" says he converted one, but he doesn't remember
exactly what he did... So it's possible, but he says he had to fool around
with a lot of settings. He's trying to remember just what he did. If he
can verify how he did it I'll post what he remembers.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"A.M-SG" <al******@newsg roup.nospam> wrote in message
news:Oe******** ******@TK2MSFTN GP15.phx.gbl...
Hi Justin,

That is good to know. Is there any way to convert an existing
applications to IIS?

Thank you for help,
Alaln
"S. Justin Gengo" <justin@[no_spam_please]aboutfortunate. com> wrote in
message news:uv******** ******@TK2MSFTN GP12.phx.gbl...
Yes,

When you create a web application you have the option to create it right
in IIS. This is how I create all of my websites (I use virtual sites
within IIS on my machine and keep the files in a folder in a separate
location):

1. File - New - Website
2. In the "New Web Site" window that opens set the location drop down
near the bottom of the window to "HTTP"
3. Select the language of your choice for the website.
3. Click the "Browse" button.
4. In the "Choose Location" window make certain that Local IIS is
selected in the menu on the left.
5. Click the top right folder icon "Create New Virtual Directory".
6. Set the alias name to the name you want for the website.
7. Browse for and/or create the file folder to hold the website files in
the location of your choice.
8. Click the "OK" button.
9. Select the new website in the center list of websites by clicking on
it to highlight it.
10. Click the "Open" button.
11. Back in the "New Web Site" window you should see something like:
http://localhost/[your website name here].
12. Click the "OK" button.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"A.M-SG" <al******@newsg roup.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
Hi,

I understand that be default VS2005 uses the ASP.NET development server
to run and test ASP.NET applications. Is it possible that we use IIS
for ASP.NET application debugging in new IDE environment?

Thank you,

Alan



Jan 11 '06 #6
Thank for all yours good inputs,

Hi Alan,

To help convert some exists FileSystem based vs 2005 web project to IIS
hosted ones, basically we can consider the following means:

1. Create the application virtual directory in IIS (through IIS manager)
and then manually copy all the files and resources in filesystem based
project's folder to the IIS's virtual directory ... After that we can open
the new web app through IIS "tab" in the VS 2005 open site wizard....

2. In vs 2005's website project, we can choose Copy WebSite or publish
WebSite to publish or copy and existing website to a new location, so we
can also utilize this function to copy or filesystem based project to the
new location (an application virtual dir created in IIS)...

Hope also helps. 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: "A.M-SG" <al******@newsg roup.nospam>
| References: <#3************ **@TK2MSFTNGP14 .phx.gbl>
<uv************ **@TK2MSFTNGP12 .phx.gbl>
| Subject: Re: Question with regards to VS.NET2005 IDE and ASP.NET 2.0
| Date: Wed, 11 Jan 2006 16:43:16 -0500
| Lines: 68
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Response
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <Oe************ **@TK2MSFTNGP15 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: 67.71.52.167
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP15.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3701 95
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| Hi Justin,
|
| That is good to know. Is there any way to convert an existing
applications
| to IIS?
|
| Thank you for help,
| Alaln
|
|
| "S. Justin Gengo" <justin@[no_spam_please]aboutfortunate. com> wrote in
| message news:uv******** ******@TK2MSFTN GP12.phx.gbl...
| > Yes,
| >
| > When you create a web application you have the option to create it
right
| > in IIS. This is how I create all of my websites (I use virtual sites
| > within IIS on my machine and keep the files in a folder in a separate
| > location):
| >
| > 1. File - New - Website
| > 2. In the "New Web Site" window that opens set the location drop down
near
| > the bottom of the window to "HTTP"
| > 3. Select the language of your choice for the website.
| > 3. Click the "Browse" button.
| > 4. In the "Choose Location" window make certain that Local IIS is
selected
| > in the menu on the left.
| > 5. Click the top right folder icon "Create New Virtual Directory".
| > 6. Set the alias name to the name you want for the website.
| > 7. Browse for and/or create the file folder to hold the website files
in
| > the location of your choice.
| > 8. Click the "OK" button.
| > 9. Select the new website in the center list of websites by clicking on
it
| > to highlight it.
| > 10. Click the "Open" button.
| > 11. Back in the "New Web Site" window you should see something like:
| > http://localhost/[your website name here].
| > 12. Click the "OK" button.
| >
| > --
| > Sincerely,
| >
| > S. Justin Gengo, MCP
| > Web Developer / Programmer
| >
| > www.aboutfortunate.com
| >
| > "Out of chaos comes order."
| > Nietzsche
| > "A.M-SG" <al******@newsg roup.nospam> wrote in message
| > news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
| >> Hi,
| >>
| >>
| >>
| >> I understand that be default VS2005 uses the ASP.NET development
server
| >> to run and test ASP.NET applications. Is it possible that we use IIS
for
| >> ASP.NET application debugging in new IDE environment?
| >>
| >>
| >>
| >> Thank you,
| >>
| >> Alan
| >>
| >>
| >
| >
|
|
|

Jan 12 '06 #7
I too prefer the file system website. I always develop there and then
publish to an IIS virtual directory later. One thing, though: I have
noticed that the special site root character ~ does not work correctly
with links on a file system website. The links are broken when
"running" the web site in file system mode, but, left untouched, work
properly once the site has been published to an IIS virtual directory.
Have any of you guys seen this problem before? Do any of you know of
any fix for it?

Steven Cheng[MSFT] wrote:
Thank for all yours good inputs,

Hi Alan,

To help convert some exists FileSystem based vs 2005 web project to IIS
hosted ones, basically we can consider the following means:

1. Create the application virtual directory in IIS (through IIS manager)
and then manually copy all the files and resources in filesystem based
project's folder to the IIS's virtual directory ... After that we can open
the new web app through IIS "tab" in the VS 2005 open site wizard....

2. In vs 2005's website project, we can choose Copy WebSite or publish
WebSite to publish or copy and existing website to a new location, so we
can also utilize this function to copy or filesystem based project to the
new location (an application virtual dir created in IIS)...

Hope also helps. 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: "A.M-SG" <al******@newsg roup.nospam>
| References: <#3************ **@TK2MSFTNGP14 .phx.gbl>
<uv************ **@TK2MSFTNGP12 .phx.gbl>
| Subject: Re: Question with regards to VS.NET2005 IDE and ASP.NET 2.0
| Date: Wed, 11 Jan 2006 16:43:16 -0500
| Lines: 68
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Response
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <Oe************ **@TK2MSFTNGP15 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: 67.71.52.167
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP15.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3701 95
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| Hi Justin,
|
| That is good to know. Is there any way to convert an existing
applications
| to IIS?
|
| Thank you for help,
| Alaln
|
|
| "S. Justin Gengo" <justin@[no_spam_please]aboutfortunate. com> wrote in
| message news:uv******** ******@TK2MSFTN GP12.phx.gbl...
| > Yes,
| >
| > When you create a web application you have the option to create it
right
| > in IIS. This is how I create all of my websites (I use virtual sites
| > within IIS on my machine and keep the files in a folder in a separate
| > location):
| >
| > 1. File - New - Website
| > 2. In the "New Web Site" window that opens set the location drop down
near
| > the bottom of the window to "HTTP"
| > 3. Select the language of your choice for the website.
| > 3. Click the "Browse" button.
| > 4. In the "Choose Location" window make certain that Local IIS is
selected
| > in the menu on the left.
| > 5. Click the top right folder icon "Create New Virtual Directory".
| > 6. Set the alias name to the name you want for the website.
| > 7. Browse for and/or create the file folder to hold the website files
in
| > the location of your choice.
| > 8. Click the "OK" button.
| > 9. Select the new website in the center list of websites by clicking on
it
| > to highlight it.
| > 10. Click the "Open" button.
| > 11. Back in the "New Web Site" window you should see something like:
| > http://localhost/[your website name here].
| > 12. Click the "OK" button.
| >
| > --
| > Sincerely,
| >
| > S. Justin Gengo, MCP
| > Web Developer / Programmer
| >
| > www.aboutfortunate.com
| >
| > "Out of chaos comes order."
| > Nietzsche
| > "A.M-SG" <al******@newsg roup.nospam> wrote in message
| > news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
| >> Hi,
| >>
| >>
| >>
| >> I understand that be default VS2005 uses the ASP.NET development
server
| >> to run and test ASP.NET applications. Is it possible that we use IIS
for
| >> ASP.NET application debugging in new IDE environment?
| >>
| >>
| >>
| >> Thank you,
| >>
| >> Alan
| >>
| >>
| >
| >
|
|
|


Jan 12 '06 #8
Thanks for your input Joey,

The "~" char just represent the Application Root of ASP.NET application
which is always used by ASP.NET server side code, so make sure your linke's
url will be parsed by ASP.NET runtime first (not directly embeded in RAW
html content....). And this "~" should work correctly in both filesystem
or IIS hosted environment without any difference...

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: "Joey" <jo*********@to pscene.com>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| Subject: Re: Question with regards to VS.NET2005 IDE and ASP.NET 2.0
| Date: 11 Jan 2006 19:13:39 -0800
| Organization: http://groups.google.com
| Lines: 137
| Message-ID: <11************ *********@g49g2 000cwa.googlegr oups.com>
| References: <#3************ **@TK2MSFTNGP14 .phx.gbl>
| <uv************ **@TK2MSFTNGP12 .phx.gbl>
| <Oe************ **@TK2MSFTNGP15 .phx.gbl>
| <lp************ *@TK2MSFTNGXA02 .phx.gbl>
| NNTP-Posting-Host: 67.22.114.248
| Mime-Version: 1.0
| Content-Type: text/plain; charset="iso-8859-1"
| X-Trace: posting.google. com 1137035624 12873 127.0.0.1 (12 Jan 2006
03:13:44 GMT)
| X-Complaints-To: gr**********@go ogle.com
| NNTP-Posting-Date: Thu, 12 Jan 2006 03:13:44 +0000 (UTC)
| In-Reply-To: <lp************ *@TK2MSFTNGXA02 .phx.gbl>
| User-Agent: G2/0.2
| X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1;
..NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC
4.0; InfoPath.1),gzi p(gfe),gzip(gfe )
| Complaints-To: gr**********@go ogle.com
| Injection-Info: g49g2000cwa.goo glegroups.com; posting-host=67.22.114. 248;
| posting-account=quLkng0 AAADPxeWcCK254A 0yusgzOfm6
| Path:
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!ne wsfeed00.sul.t-online.de!t-onli
ne.de!border2.n ntp.dca.giganew s.com!border1.n ntp.dca.giganew s.com!nntp.giga n
ews.com!postnew s.google.com!g4 9g2000cwa.googl egroups.com!not-for-mail
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3702 42
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| I too prefer the file system website. I always develop there and then
| publish to an IIS virtual directory later. One thing, though: I have
| noticed that the special site root character ~ does not work correctly
| with links on a file system website. The links are broken when
| "running" the web site in file system mode, but, left untouched, work
| properly once the site has been published to an IIS virtual directory.
| Have any of you guys seen this problem before? Do any of you know of
| any fix for it?
|
| Steven Cheng[MSFT] wrote:
| > Thank for all yours good inputs,
| >
| > Hi Alan,
| >
| > To help convert some exists FileSystem based vs 2005 web project to IIS
| > hosted ones, basically we can consider the following means:
| >
| > 1. Create the application virtual directory in IIS (through IIS manager)
| > and then manually copy all the files and resources in filesystem based
| > project's folder to the IIS's virtual directory ... After that we can
open
| > the new web app through IIS "tab" in the VS 2005 open site wizard....
| >
| > 2. In vs 2005's website project, we can choose Copy WebSite or publish
| > WebSite to publish or copy and existing website to a new location, so we
| > can also utilize this function to copy or filesystem based project to
the
| > new location (an application virtual dir created in IIS)...
| >
| > Hope also helps. 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: "A.M-SG" <al******@newsg roup.nospam>
| > | References: <#3************ **@TK2MSFTNGP14 .phx.gbl>
| > <uv************ **@TK2MSFTNGP12 .phx.gbl>
| > | Subject: Re: Question with regards to VS.NET2005 IDE and ASP.NET 2.0
| > | Date: Wed, 11 Jan 2006 16:43:16 -0500
| > | Lines: 68
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| > | X-RFC2646: Format=Flowed; Response
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| > | Message-ID: <Oe************ **@TK2MSFTNGP15 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| > | NNTP-Posting-Host: 67.71.52.167
| > | Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP15.phx. gbl
| > | Xref: TK2MSFTNGXA02.p hx.gbl
| > microsoft.publi c.dotnet.framew ork.aspnet:3701 95
| > | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
| > |
| > | Hi Justin,
| > |
| > | That is good to know. Is there any way to convert an existing
| > applications
| > | to IIS?
| > |
| > | Thank you for help,
| > | Alaln
| > |
| > |
| > | "S. Justin Gengo" <justin@[no_spam_please]aboutfortunate. com> wrote in
| > | message news:uv******** ******@TK2MSFTN GP12.phx.gbl...
| > | > Yes,
| > | >
| > | > When you create a web application you have the option to create it
| > right
| > | > in IIS. This is how I create all of my websites (I use virtual sites
| > | > within IIS on my machine and keep the files in a folder in a
separate
| > | > location):
| > | >
| > | > 1. File - New - Website
| > | > 2. In the "New Web Site" window that opens set the location drop
down
| > near
| > | > the bottom of the window to "HTTP"
| > | > 3. Select the language of your choice for the website.
| > | > 3. Click the "Browse" button.
| > | > 4. In the "Choose Location" window make certain that Local IIS is
| > selected
| > | > in the menu on the left.
| > | > 5. Click the top right folder icon "Create New Virtual Directory".
| > | > 6. Set the alias name to the name you want for the website.
| > | > 7. Browse for and/or create the file folder to hold the website
files
| > in
| > | > the location of your choice.
| > | > 8. Click the "OK" button.
| > | > 9. Select the new website in the center list of websites by
clicking on
| > it
| > | > to highlight it.
| > | > 10. Click the "Open" button.
| > | > 11. Back in the "New Web Site" window you should see something like:
| > | > http://localhost/[your website name here].
| > | > 12. Click the "OK" button.
| > | >
| > | > --
| > | > Sincerely,
| > | >
| > | > S. Justin Gengo, MCP
| > | > Web Developer / Programmer
| > | >
| > | > www.aboutfortunate.com
| > | >
| > | > "Out of chaos comes order."
| > | > Nietzsche
| > | > "A.M-SG" <al******@newsg roup.nospam> wrote in message
| > | > news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
| > | >> Hi,
| > | >>
| > | >>
| > | >>
| > | >> I understand that be default VS2005 uses the ASP.NET development
| > server
| > | >> to run and test ASP.NET applications. Is it possible that we use
IIS
| > for
| > | >> ASP.NET application debugging in new IDE environment?
| > | >>
| > | >>
| > | >>
| > | >> Thank you,
| > | >>
| > | >> Alan
| > | >>
| > | >>
| > | >
| > | >
| > |
| > |
| > |
|
|

Jan 12 '06 #9
I know. I only use it in the server side code. The problem always
exists (in server side code) because of the way that the ~ is resolved
by the app when it is ran in file system mode.

Jan 12 '06 #10

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

Similar topics

18
2030
by: HerrLucifer | last post by:
I am each day becoming more and more addicted to the new .Net framework because of its cool RAD facilities. However, performance and speed is extremely important for my application development. I have done many various tests to compare the performance speed of applications written in C++ 6.0 V.S. the same ones in VB.Net or VC#.Net . The result were quiet the same( i am not sure if i have go the right path!). But I know C++ exe files use...
2
2715
by: n_steenkiste | last post by:
Hello, I'm trying to create a user profile in my web.config file. When I try some example code, I am not able to write the <add> properties of a profile: <profile><properties><add should get here></properties> Intellisense only suggests between properties: !-- and ?
0
1082
by: Julian | last post by:
I upgraded this program from VC6 to .NET2003 a few months back. I had to change some of the source code, but I was finally able to get it to compile and link properly. I just tried to upgrade the same code from .NET2003 to .NET2005 and again I had to make some code changes (basically had to do with looping scope and defining operator function return types)... so, now I am able to compile all the files, but when it tries to compile, I get...
5
1239
by: John S | last post by:
Hi, when programming with VB.Net2005 you quite often need to have more privileges than the normal office user. In the past, this hasn't been too much of an issue as I have a user with full admin privileges that I use just for that. Understandably, I cannot use that login to access the Web. With Visual Studio becoming more integrated with the Web, can anyone suggest what privileges I really need to be able to create Windows and Web...
5
3912
by: mark_overstreet | last post by:
I have a generic data layer DLL that expects to read its connection string from it's own config file. The dll and config file have been placed in the bin directory (VS.NET2005). However, due to shadow copying, the config file does not get placed in the same directory as the executing assembly at execution time. For example, my data access DLL was copied to the following location .... ...
0
946
by: vennela | last post by:
hi, I am trying to test the serial ports. First i tested using hyper terminals and came to know that hardware is through.While testing through the program in vb.net2005,modem is responding for the AT command.But to transmit the next command or data, i need to clear the receive buffer rite??..if it is assembly code,it would not be a problem.but visual basic2005.net , the syntax differs from .net2003.i am not able to find inbuffercount . ...
0
1095
by: anupamak | last post by:
Hello everybody, I have gone through lot many articles regarding the SOAP in webServices. I did many applications in the windows service in .net2005. Now my new requirement is to create a new windows service which can do two things: 1) it should be able to service a SOAP call by reading the MySQL db and generate a SOAP envelope. And 2) It should also run for every x-seconds/x-mins. I am carrying out this task in C#.net2005. And MySQL. ...
2
2302
by: =?Utf-8?B?TWFyYyBBbGxhcmQ=?= | last post by:
Hello, I have posted this message in the normal newsgroup instead of posting it in the managed ones. I have a project in VB6 (GDI+) that will read a WMF File (created by my customer) and then resize it and insert it into a picture I have a problem with in in NET2005 (but it is OK in VB6).
2
1179
mafaisal
by: mafaisal | last post by:
Hello Experts I am Using vb.net2005 How To Know a File or Folde is Exist in Specific Folder Using vb.net2005 eg : test.txt this file is exist in D:\Faisal Hw to check this Faisal
0
8392
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8305
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8730
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7321
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6163
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4301
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.