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

Running ASP.NEt on windows media center OS in Debug mode.

Hi all,

My new computer has Microsoft Windows XP Media Center Edition as the
operating system. I am trying to run VStudio 2003 , ASP.NET on IIS 5.0
but every single time i run the source code of my application , it shows me
the message "unable to run debugging, please try running it using the option
"start with out debugging" which then start the application.

Can any body tell me why this is happening, coudl it be the OS with which
VS2203 ASP.NEt is not compatible with?

thanks
Sameer
Apr 23 '06 #1
4 1639
Hey, Sameer. I had the same problem with VS.NET 2002.

I noticed that my IIS wasn't configured to handle ASP.NET. You can
check that at

* Start->Control Panel->Administrative Tools->Internet Information
Services
* Then expand the (local computer) and right-click Default Web site and
select Properties.
*Select the "Home Directory" tab and hit the "Configuration..." button
near the bottom right.

In the "Mappings" tab, you should see mappings to files with extensions
like *.asax, *.ascx, *.aspc, etc. etc.

If not, then you need to register the .NET framework with IIS. There's
an EXE file called "aspnet_regiis.exe" in each installation of the .NET
Framework that will do this for you. On my machine I ran the following
commands at the command prompt (The info I read told me to use the "-r"
extension, so I just did that without looking further into it):

C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\aspne t_regiis.exe -r
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -r

Now I have .NET set up in IIS. Since I ran the registration for .NET
version 1.1.4322 after the 1.0 one, it looks like my IIS is set to use
version 1.1. I believe if I ran the 1.0 registration again, I'd be set
up for 1.0.
I haven't tested it out yet, but I think this will work (I'm still
waiting for VS.NET to reinstall while I'm writing this... I wish I had
found this first.. ugh). I'll report back if it's successful.

-Stephen

-------------------------------------------------------------------------------------------------------------------------

sameer wrote:
Hi all,

My new computer has Microsoft Windows XP Media Center Edition as the
operating system. I am trying to run VStudio 2003 , ASP.NET on IIS 5.0
but every single time i run the source code of my application , it shows me
the message "unable to run debugging, please try running it using the option
"start with out debugging" which then start the application.

Can any body tell me why this is happening, coudl it be the OS with which
VS2203 ASP.NEt is not compatible with?

thanks
Sameer


May 3 '06 #2
thanks for your help stephen, i did ran the registration tool before itself,
if not then IIS does not support ASP.Net at all. I think in my case it is the
operating system that does not support debugging itself.

thanks

"st*************@verizon.net" wrote:
Hey, Sameer. I had the same problem with VS.NET 2002.

I noticed that my IIS wasn't configured to handle ASP.NET. You can
check that at

* Start->Control Panel->Administrative Tools->Internet Information
Services
* Then expand the (local computer) and right-click Default Web site and
select Properties.
*Select the "Home Directory" tab and hit the "Configuration..." button
near the bottom right.

In the "Mappings" tab, you should see mappings to files with extensions
like *.asax, *.ascx, *.aspc, etc. etc.

If not, then you need to register the .NET framework with IIS. There's
an EXE file called "aspnet_regiis.exe" in each installation of the .NET
Framework that will do this for you. On my machine I ran the following
commands at the command prompt (The info I read told me to use the "-r"
extension, so I just did that without looking further into it):

C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\aspne t_regiis.exe -r
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -r

Now I have .NET set up in IIS. Since I ran the registration for .NET
version 1.1.4322 after the 1.0 one, it looks like my IIS is set to use
version 1.1. I believe if I ran the 1.0 registration again, I'd be set
up for 1.0.
I haven't tested it out yet, but I think this will work (I'm still
waiting for VS.NET to reinstall while I'm writing this... I wish I had
found this first.. ugh). I'll report back if it's successful.

-Stephen

-------------------------------------------------------------------------------------------------------------------------

sameer wrote:
Hi all,

My new computer has Microsoft Windows XP Media Center Edition as the
operating system. I am trying to run VStudio 2003 , ASP.NET on IIS 5.0
but every single time i run the source code of my application , it shows me
the message "unable to run debugging, please try running it using the option
"start with out debugging" which then start the application.

Can any body tell me why this is happening, coudl it be the OS with which
VS2203 ASP.NEt is not compatible with?

thanks
Sameer


May 3 '06 #3
I am apparently running Windows XP Media Center Edition 2002 with
Service Pack 2.

My problem is solved now after I registered .NET with IIS. I also
reinstalled VS.NET Pro (2002) at the same time, so that might have
helped too.

The only other thing I did was to add some Users to some of the
Security Groups in the Computer Management. I did a few just trying
things out, but that was before I did the registration again. Here's
some I did:

* Added the ASPNET user to the Administrators Group
* Added ASPNET to the COMPUTERNAME Admins Group
* I may have added Administrator, IUSR_COMPUTERNAME, IWAM_COMPUTERNAME,
& my current user to the "Debugger Users" & "VS Developers" Groups

The only other thing I can think of is that I reran the Windows
Component Update CD. Other than that, this is pretty much a new
computer I just got up and running.

May 4 '06 #4
Stephen , after u mentioned it to me i though let me try it again and boom it
is working now... i reran the aspnet tool and boom i can debug now.

thanks for your help

"st*************@verizon.net" wrote:
I am apparently running Windows XP Media Center Edition 2002 with
Service Pack 2.

My problem is solved now after I registered .NET with IIS. I also
reinstalled VS.NET Pro (2002) at the same time, so that might have
helped too.

The only other thing I did was to add some Users to some of the
Security Groups in the Computer Management. I did a few just trying
things out, but that was before I did the registration again. Here's
some I did:

* Added the ASPNET user to the Administrators Group
* Added ASPNET to the COMPUTERNAME Admins Group
* I may have added Administrator, IUSR_COMPUTERNAME, IWAM_COMPUTERNAME,
& my current user to the "Debugger Users" & "VS Developers" Groups

The only other thing I can think of is that I reran the Windows
Component Update CD. Other than that, this is pretty much a new
computer I just got up and running.

May 5 '06 #5

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

Similar topics

2
by: Stephen Kellett | last post by:
Hi Folks, We've been using Python embedded in an application for a while now, where the Python dll is PythonNN.dll, NN being the version number, such as Python24.dll. Recently it was pointed...
10
by: ThunderMusic | last post by:
Hi, How can I get if the Windows running is a server version? Is there a property somewhere that can tell me if the Windows version is a server edition (including server, advanced server, web...
8
by: Siv | last post by:
Hi, Does anyone have a function that when called returns which operating system we are running on. E.g: Select Case GetOSVer() Case 1 'Win95 ... Case 2 'Win98 ... Case 3 'Win98SE
0
by: pigge79 | last post by:
Hi there, I've developing an application that translates keystrokes sent from my TV card remote control to Windows XP Media Center, since the two are not compatible. I've successfully been able...
9
by: Michael.Suarez | last post by:
Suppose I have a program that prompts you with a dialogbox to enter a password. If you get the password correct, it allows you into the program, else it kills the program. Suppose that when I...
9
by: esakal | last post by:
Hello, I'm programming an application based on CAB infrastructure in the client side (c# .net 2005) Since my application must be sequencally, i wrote all the code in the UI thread. my...
0
by: JDeats | last post by:
I'm condering purchasing a PC with, due to time frame I'm looking to buy preassembled and all the choices today come with Windows Media Center Edition installed without XP Pro as even an option. ...
2
by: =?Utf-8?B?YmFyYmdpbGdlcg==?= | last post by:
Can no longer open live tv in Media center...i get the following message. "Some of the files needed to play radio or video are missing or corrupt. Media Center componet registration may have...
1
by: =?Utf-8?B?U3ludGF4IDM3NzA3?= | last post by:
I have found lots of people talking about this issue, but no one seems to have a solution. I could really use some help here. Has anyone seen this or have any ideas? I have been running the...
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: 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
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
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
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...
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,...
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.