473,748 Members | 2,239 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Anyway to disable the ASP.NET Development Server?

Hello All,

I have grown very annoyed with the ASP.NET Development Server since I still
develop with a full instance of IIS and would like to know is there a nice
clean way to disable the ASP.NET DEvelopment Server - I simply do not want
to use it, nor do I want it fire up when I'm trying to debug!

Thanks,

Chris
Jul 24 '06 #1
7 4640
Hi Chris,

In VWD, right-click on your project name, and in the Property Pages, click
Start Options.
In the middle of the dialog box, in the Server section, select Use custom
server and provide the Base URL.

Does that work?

Ken
Microsoft MVP [ASP.NET]
"Chris Hayes" <cp.hayes@[NO2SPAM]sbcglobal.netwr ote in message
news:eH******** *****@TK2MSFTNG P02.phx.gbl...
Hello All,

I have grown very annoyed with the ASP.NET Development Server since I
still develop with a full instance of IIS and would like to know is there
a nice clean way to disable the ASP.NET DEvelopment Server - I simply do
not want to use it, nor do I want it fire up when I'm trying to debug!

Thanks,

Chris

Jul 24 '06 #2
You mean u dun want to run the ASPNET_WP process that is the actual process
for running asp.net?? if so then u ve to uninstall asp.net...go to

C:\Windows\Micr osoft.NET\Frame work\v1.1.4322\ aspnet_regiis -u

This will un install asp.net from your dev server

"Chris Hayes" wrote:
Hello All,

I have grown very annoyed with the ASP.NET Development Server since I still
develop with a full instance of IIS and would like to know is there a nice
clean way to disable the ASP.NET DEvelopment Server - I simply do not want
to use it, nor do I want it fire up when I'm trying to debug!

Thanks,

Chris
Jul 24 '06 #3
Hi Murtaza,

I'm actually referring to the light weight "ASP.NET Development Server" that
comes with Visual Studio 2005 as an alternative to having IIS installed. It
kind of gets in the way when I try to debug, it seems to force me to use it
in debugging scenarios and I would prefer to just run debugging like I used
to against IIS. I am old fashioned.

Chris

"Murtaza" <Mu*****@discus sions.microsoft .comwrote in message
news:49******** *************** ***********@mic rosoft.com...
You mean u dun want to run the ASPNET_WP process that is the actual
process
for running asp.net?? if so then u ve to uninstall asp.net...go to

C:\Windows\Micr osoft.NET\Frame work\v1.1.4322\ aspnet_regiis -u

This will un install asp.net from your dev server

"Chris Hayes" wrote:
>Hello All,

I have grown very annoyed with the ASP.NET Development Server since I
still
develop with a full instance of IIS and would like to know is there a
nice
clean way to disable the ASP.NET DEvelopment Server - I simply do not
want
to use it, nor do I want it fire up when I'm trying to debug!

Thanks,

Chris

Jul 24 '06 #4
Hi Ken,

I tried that, and it didn't work. I'll give it a try again here in a few
minutes.

Thanks,

Chris
"Ken Cox [Microsoft MVP]" <BA**********@n ewsgroups.nospa mwrote in message
news:el******** ******@TK2MSFTN GP03.phx.gbl...
Hi Chris,

In VWD, right-click on your project name, and in the Property Pages, click
Start Options.
In the middle of the dialog box, in the Server section, select Use custom
server and provide the Base URL.

Does that work?

Ken
Microsoft MVP [ASP.NET]
"Chris Hayes" <cp.hayes@[NO2SPAM]sbcglobal.netwr ote in message
news:eH******** *****@TK2MSFTNG P02.phx.gbl...
>Hello All,

I have grown very annoyed with the ASP.NET Development Server since I
still develop with a full instance of IIS and would like to know is there
a nice clean way to disable the ASP.NET DEvelopment Server - I simply do
not want to use it, nor do I want it fire up when I'm trying to debug!

Thanks,

Chris


Jul 24 '06 #5
To specify the Web server for an already-created Web site, open your local website
with VS 2005 and, in the Solution Explorer, right-click the name of the Web site for
which you want to specify a Web server, and then click Property Pages.

In the Property Pages dialog box, click the Start Options tab.
Under Server, click Use custom server.
In the Base URL box, type the URL that VS 2005 should start when running the current Web site.
You can use localhost, your machine name, or an assigned domain name for your IP.

From that point on, the VS.NET IDE will not use the internal web server,
but will use IIS to open your pages, i.e., if you are working on default.aspx,
and you're using localhost, it will be opened as : http://localhost/default.aspx


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====

"Chris Hayes" <cp.hayes@[NO2SPAM]sbcglobal.netwr ote in message
news:eH******** *****@TK2MSFTNG P02.phx.gbl...
Hello All,

I have grown very annoyed with the ASP.NET Development Server since I still develop with a full
instance of IIS and would like to know is there a nice clean way to disable the ASP.NET
DEvelopment Server - I simply do not want to use it, nor do I want it fire up when I'm trying to
debug!

Thanks,

Chris

Jul 24 '06 #6
No, that's not what he meant.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Murtaza" <Mu*****@discus sions.microsoft .comwrote in message
news:49******** *************** ***********@mic rosoft.com...
You mean u dun want to run the ASPNET_WP process that is the actual process
for running asp.net?? if so then u ve to uninstall asp.net...go to

C:\Windows\Micr osoft.NET\Frame work\v1.1.4322\ aspnet_regiis -u

This will un install asp.net from your dev server

"Chris Hayes" wrote:
>Hello All,

I have grown very annoyed with the ASP.NET Development Server since I still
develop with a full instance of IIS and would like to know is there a nice
clean way to disable the ASP.NET DEvelopment Server - I simply do not want
to use it, nor do I want it fire up when I'm trying to debug!

Thanks,

Chris

Jul 24 '06 #7
This does work. Once I change it in the property pages for the web
project, ASP.Net development server does not get invoked. I dont know
why Microsoft included it, it is so damn slow and gets in the way of
debugging.

Juan T. Llibre wrote:
To specify the Web server for an already-created Web site, open your local website
with VS 2005 and, in the Solution Explorer, right-click the name of the Web site for
which you want to specify a Web server, and then click Property Pages.

In the Property Pages dialog box, click the Start Options tab.
Under Server, click Use custom server.
In the Base URL box, type the URL that VS 2005 should start when running the current Web site.
You can use localhost, your machine name, or an assigned domain name for your IP.

From that point on, the VS.NET IDE will not use the internal web server,
but will use IIS to open your pages, i.e., if you are working on default.aspx,
and you're using localhost, it will be opened as : http://localhost/default.aspx


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====

"Chris Hayes" <cp.hayes@[NO2SPAM]sbcglobal.netwr ote in message
news:eH******** *****@TK2MSFTNG P02.phx.gbl...
Hello All,

I have grown very annoyed with the ASP.NET Development Server since I still develop with a full
instance of IIS and would like to know is there a nice clean way to disable the ASP.NET
DEvelopment Server - I simply do not want to use it, nor do I want it fire up when I'm trying to
debug!

Thanks,

Chris
Aug 2 '06 #8

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

Similar topics

2
13273
by: techfuzz | last post by:
I scoured this group and others looking for the best way to disable a button after the first click to prevent multiple submissions, but never did find anything that worked like they said it would. I went ahead and wrote my own bit of code so I'm sharing it here for everyone. Even though it doesn't really disable the button by greying it out, it prevents the multiple submissions which it what I was attempting to prevent all along. ...
14
7192
by: Sinity | last post by:
Anyone knows the method/codes to disable the clicked button after first click by using .aspx-- to prevent people to click many time when waiting for the server response. I tried to do this by adding a java script for the button. But, useless.. Please help! Thank you
6
2667
by: Klaus Jensen | last post by:
Hi! I have a pretty traditional setup where I develop on my local PC and the use "Copy Project" to deploy to the production enviroment.. In web.config I need different values for connectionstrings etc for development and production - pretty normalt stuff. Currently I edit the web.config manually before deploying, and have never forgotten - but I know it is a matter of time before I or a colleague do.
2
2709
by: Andre Ranieri | last post by:
I'm retouching our corporate web site that, among other things, allows customers to log in and pay their invoices online. I noticed that on the checkout page, the credit card number textbox autofills with past entries for that textbox. My development workstation has the Google Toolbar installed; I'm not sure whether the autofill functionality is native to the browser or coming from the Google Toolbar. In either case, is there any way...
16
3457
by: Barry Gilmore | last post by:
Is there a way to disable a button after it is clicked? I am trying to avoid having someone click on it twice while they wait for it to process. Thank you!
4
1472
by: terry | last post by:
I know that PSQL has the cool feature of doing: Adding missing FROM-clause But I want to disable it, because its silent adding can allow a bad SQL statement to execute a cartesian select (when in fact it should error out). I searched and found references to changing the postgresql.conf with: add_missing_from = false enable_implicited_join = false But neither one of these seems to disable the functionality (I did a reload after making...
4
2739
by: RedHair | last post by:
Development: Windows 2003 Production :Windows 2003 ASP.NET 2.0 + C# I want to disable the cache feature of all pages in dev but enable it in production environments. What's the solution? If uses cacheProfiles in web.config then I need to deploy different web.config files from dev to production sites.
4
1775
by: Residential Area Freak | last post by:
How do I disable programmatically the cleartype function in IE 7 for my web apps? Are there new HTML-Tags or JavaScript functions to disable cleartype in the development? Best regards pP
56
3858
by: Deepan HTML | last post by:
Hi All, Currently i am working in a framed environment where i have divided the window as 20% and 80% and the 20% is used for navigation purpose and right frame for displaying the orignal content. Now i want to Disable ad Enable the menu items which are placed in the left frame for navigation purpose. Can any of you input me with any idea as how to proceed? If you need any other information then please let me know.
0
8991
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
9372
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...
1
9324
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9247
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...
1
6796
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
6074
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
4606
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4874
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3313
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.