472,794 Members | 2,183 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Question about IIS

Hi,

I have two ASP.NET web projects residing on IIS. (Lets say,
http://localhost/Web1 and http://localhost/Web2 )

When I debug one of these applications (using VS .NET) and stop at a
breakpoint, I came accross this problem:
I can't run the other web application from Internet Explorer. The page waits
and waits and waits...
As soon as I stop debugging, the page loads..

How can I solve this problem?
What I want is to be able to run a web application, when debugging another
one at the same time on the same IIS. (Actually, is this possible?)

Regards.
Nov 18 '05 #1
4 1095
I dont think you can do this in the way you are describing but why would you
want to. You could always load up another instance of IE and go to the other
site OR you could have both web projects included in your solution, and set
both to start in the debugger so that both windows will open and will be in
debug mode when you hit 'Start/F5'.

Right click on the solution (within VS.NET) and in 'common properties -->
Startup project', select 'Multiple Startup projects' and ensure both your
projects have the 'Action' set top 'Start'.

--
- Paul Glavich
Microsoft MVP - ASP.NET
"Dinçer" <dincer80"at"yahoo.com> wrote in message
news:#P**************@TK2MSFTNGP09.phx.gbl...
Hi,

I have two ASP.NET web projects residing on IIS. (Lets say,
http://localhost/Web1 and http://localhost/Web2 )

When I debug one of these applications (using VS .NET) and stop at a
breakpoint, I came accross this problem:
I can't run the other web application from Internet Explorer. The page waits and waits and waits...
As soon as I stop debugging, the page loads..

How can I solve this problem?
What I want is to be able to run a web application, when debugging another
one at the same time on the same IIS. (Actually, is this possible?)

Regards.

Nov 18 '05 #2
Actually the thing is:

I code on production environment.
I mean the server where I code is being used. (People use
http://server/WebApp1 )
On the same server I am working on another project. (Lets say
http://server/WebApp2)
These 2 projects are .NET projects and they reside on the same IIS.

What I want is to be able to debug WebApp2, without preventing people access
to WebApp1.
At the moment, when I am in debug mode on WebApp1, people cannot access
http://server/WebApp2.
When I stop debugging, everthin is fine.
"Paul Glavich [MVP - ASP.NET]" <gl**@aspalliance.com-NOSPAM> wrote in
message news:ei**************@TK2MSFTNGP10.phx.gbl...
I dont think you can do this in the way you are describing but why would you want to. You could always load up another instance of IE and go to the other site OR you could have both web projects included in your solution, and set both to start in the debugger so that both windows will open and will be in debug mode when you hit 'Start/F5'.

Right click on the solution (within VS.NET) and in 'common properties -->
Startup project', select 'Multiple Startup projects' and ensure both your
projects have the 'Action' set top 'Start'.

--
- Paul Glavich
Microsoft MVP - ASP.NET
"Dinçer" <dincer80"at"yahoo.com> wrote in message
news:#P**************@TK2MSFTNGP09.phx.gbl...
Hi,

I have two ASP.NET web projects residing on IIS. (Lets say,
http://localhost/Web1 and http://localhost/Web2 )

When I debug one of these applications (using VS .NET) and stop at a
breakpoint, I came accross this problem:
I can't run the other web application from Internet Explorer. The page

waits
and waits and waits...
As soon as I stop debugging, the page loads..

How can I solve this problem?
What I want is to be able to run a web application, when debugging another one at the same time on the same IIS. (Actually, is this possible?)

Regards.


Nov 18 '05 #3
Debugging on a production environment under any circumstances is a bad idea.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Dinçer" <dincer80"at"yahoo.com> wrote in message
news:OL**************@tk2msftngp13.phx.gbl...
Actually the thing is:

I code on production environment.
I mean the server where I code is being used. (People use
http://server/WebApp1 )
On the same server I am working on another project. (Lets say
http://server/WebApp2)
These 2 projects are .NET projects and they reside on the same IIS.

What I want is to be able to debug WebApp2, without preventing people access to WebApp1.
At the moment, when I am in debug mode on WebApp1, people cannot access
http://server/WebApp2.
When I stop debugging, everthin is fine.
"Paul Glavich [MVP - ASP.NET]" <gl**@aspalliance.com-NOSPAM> wrote in
message news:ei**************@TK2MSFTNGP10.phx.gbl...
I dont think you can do this in the way you are describing but why would

you
want to. You could always load up another instance of IE and go to the

other
site OR you could have both web projects included in your solution, and

set
both to start in the debugger so that both windows will open and will be

in
debug mode when you hit 'Start/F5'.

Right click on the solution (within VS.NET) and in 'common properties -->
Startup project', select 'Multiple Startup projects' and ensure both your projects have the 'Action' set top 'Start'.

--
- Paul Glavich
Microsoft MVP - ASP.NET
"Dinçer" <dincer80"at"yahoo.com> wrote in message
news:#P**************@TK2MSFTNGP09.phx.gbl...
Hi,

I have two ASP.NET web projects residing on IIS. (Lets say,
http://localhost/Web1 and http://localhost/Web2 )

When I debug one of these applications (using VS .NET) and stop at a
breakpoint, I came accross this problem:
I can't run the other web application from Internet Explorer. The page

waits
and waits and waits...
As soon as I stop debugging, the page loads..

How can I solve this problem?
What I want is to be able to run a web application, when debugging

another one at the same time on the same IIS. (Actually, is this possible?)

Regards.



Nov 18 '05 #4
The problem is in IE.

I noticed that when VS in debug IE does not want to show up.
It's on hold somewhere.

As soon as you end the debug session IE would show up.

the solution is easy. Fire up the second IE before you started to debug and
then navigate to the page.

George.

"Dinçer" <dincer80"at"yahoo.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hi,

I have two ASP.NET web projects residing on IIS. (Lets say,
http://localhost/Web1 and http://localhost/Web2 )

When I debug one of these applications (using VS .NET) and stop at a
breakpoint, I came accross this problem:
I can't run the other web application from Internet Explorer. The page waits and waits and waits...
As soon as I stop debugging, the page loads..

How can I solve this problem?
What I want is to be able to run a web application, when debugging another
one at the same time on the same IIS. (Actually, is this possible?)

Regards.

Nov 18 '05 #5

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

Similar topics

1
by: Mohammed Mazid | last post by:
Can anyone please help me on how to move to the next and previous question? Here is a snippet of my code: Private Sub cmdNext_Click() End Sub Private Sub cmdPrevious_Click() showrecord
3
by: Stevey | last post by:
I have the following XML file... <?xml version="1.0"?> <animals> <animal> <name>Tiger</name> <questions> <question index="0">true</question> <question index="1">true</question> </questions>
7
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask...
3
by: Ekqvist Marko | last post by:
Hi, I have one Access database table including questions and answers. Now I need to give answer id automatically to questionID column. But I don't know how it is best (fastest) to do? table...
10
by: glenn | last post by:
I am use to programming in php and the way session and post vars are past from fields on one page through to the post page automatically where I can get to their values easily to write to a...
10
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server...
53
by: Jeff | last post by:
In the function below, can size ever be 0 (zero)? char *clc_strdup(const char * CLC_RESTRICT s) { size_t size; char *p; clc_assert_not_null(clc_strdup, s); size = strlen(s) + 1;
56
by: spibou | last post by:
In the statement "a *= expression" is expression assumed to be parenthesized ? For example if I write "a *= b+c" is this the same as "a = a * (b+c)" or "a = a * b+c" ?
2
by: Allan Ebdrup | last post by:
Hi, I'm trying to render a Matrix question in my ASP.Net 2.0 page, A matrix question is a question where you have several options that can all be rated according to several possible ratings (from...
3
by: Zhang Weiwu | last post by:
Hello! I wrote this: ..required-question p:after { content: "*"; } Corresponding HTML: <div class="required-question"><p>Question Text</p><input /></div> <div...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.