473,324 Members | 2,456 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,324 software developers and data experts.

Creating first project

I have a problem with creating new Web project
I use Win XP pro. I installed VS 2003 and after installation ran
"aspnet_regiis.exe /i "

I got error message: "The web server reported the following error when
attemping to create or open the Web project located at the following
URL; "http://localhost/WebApplication1'.'HTTP/1.1.500 Server Error'

The button "help" opened for me such page:
"ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/vbref/html/vberrthewebserverreportedfollowingerrorwhenattempt ingtocreateoropenwebprojectlocatedatfollowingurlur l.htm"

I created test.html file and I can access to it
(http://localhost/test.html) - in case if somebody need to know if
server works

Any idea what it can be?
Thanks everybody for advice.

Jan 30 '06 #1
8 1313
Because IIS returns results for an html file does not mean results will be
returned for an aspx page which must be compiled by ASP.NET before being
returned to the browser. Write a test page and invoke the DateTime.Now
property of the Datetime method. Assign the value to a Label.Text property
and request the aspx page from the browser. If you don't see a date and time
ASP.NET 1.1 is not installed correctly.

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/


<y1***@yahoo.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
I have a problem with creating new Web project
I use Win XP pro. I installed VS 2003 and after installation ran
"aspnet_regiis.exe /i "

I got error message: "The web server reported the following error when
attemping to create or open the Web project located at the following
URL; "http://localhost/WebApplication1'.'HTTP/1.1.500 Server Error'

The button "help" opened for me such page:
"ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/vbref/html/vberrthewebserverreportedfollowingerrorwhenattempt ingtocreateoropenwebprojectlocatedatfollowingurlur l.htm"

I created test.html file and I can access to it
(http://localhost/test.html) - in case if somebody need to know if
server works

Any idea what it can be?
Thanks everybody for advice.

Jan 30 '06 #2
Congrats, you've just encoutered your first bug.
That's what error 500 means. You need to go
to your IE's Internet Options, Advanced tab,
and turn off Show Friendly HTTP Error Messages,
before you'll see the cause of the error.
<y1***@yahoo.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
I have a problem with creating new Web project
I use Win XP pro. I installed VS 2003 and after installation ran
"aspnet_regiis.exe /i "

I got error message: "The web server reported the following error when
attemping to create or open the Web project located at the following
URL; "http://localhost/WebApplication1'.'HTTP/1.1.500 Server Error'

The button "help" opened for me such page:
"ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/vbref/html/vberrthewebserver
reportedfollowingerrorwhenattemptingtocreateoropen webprojectlocatedatfollowi
ngurlurl.htm"
I created test.html file and I can access to it
(http://localhost/test.html) - in case if somebody need to know if
server works

Any idea what it can be?
Thanks everybody for advice.

Jan 30 '06 #3
I cannot create project - why do I need to change setting for IE?

Jan 31 '06 #4
Then it could be a COM+ issue.
Does it work if you set Application
Isolation to Low in IIS?
What do you see in COM+ in Component
Services?

<y1***@yahoo.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
I have a problem with creating new Web project
I use Win XP pro. I installed VS 2003 and after installation ran
"aspnet_regiis.exe /i "

I got error message: "The web server reported the following error when
attemping to create or open the Web project located at the following
URL; "http://localhost/WebApplication1'.'HTTP/1.1.500 Server Error'

The button "help" opened for me such page:
"ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/vbref/html/vberrthewebserver
reportedfollowingerrorwhenattemptingtocreateoropen webprojectlocatedatfollowi
ngurlurl.htm"
I created test.html file and I can access to it
(http://localhost/test.html) - in case if somebody need to know if
server works

Any idea what it can be?
Thanks everybody for advice.

Jan 31 '06 #5
I found that on "working" PC exists about ASPNET account, but on "bad"
PC - does not .
Who has to create this account (installation of VS.Net, IIS, etc) and
why this account need?
I already reinstalled VS and IIS but account still does not exist - how
to "force" create it?

Jan 31 '06 #6
By default, ASPNET is the account used to run
ASP.NET server-side programs. This should've
been installed by the SDK or VS. If it weren't,
it might have been a due to restrictions on the
logged in account under which you installed the
SDK or VS.


<y1***@yahoo.com> wrote in message
news:11**********************@g43g2000cwa.googlegr oups.com...
I found that on "working" PC exists about ASPNET account, but on "bad"
PC - does not .
Who has to create this account (installation of VS.Net, IIS, etc) and
why this account need?
I already reinstalled VS and IIS but account still does not exist - how
to "force" create it?

Jan 31 '06 #7
The ASPNET account is not necessarily needed.

In IIS 6.0 ( Windows Server 2003 ), the ASPNET account is not created,
and everything works with the NT Authority\Network Service

re:
Who has to create this account
The .Net Framework setup creates the account, if needed.

re: why this account need?
It's needed so that ASP.NET can run as a particular user account.
ASP.NET needs file/process permissions to do its operations.

If there was no account assigned to run ASP.NET as,
it would be impossible for ASP.NET to operate.

re: how to "force" create it?
You can force the creation of the account by running aspnet_regiis -u
followed by aspnet_regiis -i (from a command window in the .Net Framework directory).

Juan T. Llibre
ASP.NET MVP
ASPNETFAQ.COM : http://www.aspnetfaq.com
==================================
<y1***@yahoo.com> wrote in message news:11**********************@g43g2000cwa.googlegr oups.com...I found that on "working" PC exists about ASPNET account, but on "bad"
PC - does not .
Who has to create this account (installation of VS.Net, IIS, etc) and
why this account need?
I already reinstalled VS and IIS but account still does not exist - how
to "force" create it?

Jan 31 '06 #8
does account need to XP pro?
How I can check version of IIS?

Feb 1 '06 #9

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

Similar topics

1
by: dave | last post by:
I first started using HCW.exe to compile .rtf filew created with MS Word a couple of weeks ago. I used the file | new menu then selected New project in the dialog box and everything worked as...
4
by: Nick | last post by:
Hi, I have a windows application, wherein the solution consists of 5 projects. When I try to create a setup and deployment project for this solution, I'm somehow unable to add anything in...
0
by: Adam Clauss | last post by:
I have a C++ COM Addin I wrote for Outlook (2002) using VS.Net 2002. Having completed it, I am now looking to create a setup project and install it on another machine. I created a setup project...
15
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use...
3
by: epigram | last post by:
I've been creating some toy ASP.NET apps in an effort to understand the technology. I've something odd with regards to project/solution creation. If you create a new asp.net application, it...
2
by: Val3 | last post by:
Hi all. I need to build dll(s) and windows services using VB .NET 2005 Express. When I make File/New project the windows contain only Windows application, Windows control library, Console...
10
by: C# Beginner | last post by:
Hi there, I'm currently trying to create a MS access file at runtime, but I stumble into some problems. 1. When I use Datatype adUnsignedInt I get an error (invalid type). 2. Which datatype...
3
by: Sean C. | last post by:
Hey All, I'm having a little problem here. I have a project that I'm working on that involves a MySQL server database backend. I'm having no problem creating the database on the fly if it...
17
Motoma
by: Motoma | last post by:
This article is cross posted from my personal blog. You can find the original article, in all its splendor, at http://motomastyle.com/creating-a-mysql-data-abstraction-layer-in-php/. Introduction:...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.