Dale,
What you need to do is troubleshoot why ASP.NET is not working on the site.
I would try browsing to a simple inline .aspx page and see what the result
it. Turn off Friendly HTTP Error Messages in the browser first.
Here is a simple page you can use. Just copy and paste this code into
Notepad and save as who.aspx. Copy it to your Web server content area and
then browse to it.
<%@ Page Language="C#" %>
<script runat="server">
// Insert page code here
//
private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho" runat="server">Label</asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>
Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)
This post is provided as-is with no warranties and confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <
[email protected]>
Sender: "Dale Binder" <
[email protected]>
References: <
[email protected]>
<
[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.
Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.
-----Original Message-----
Marc,
Do you have any .aspx pages already on that server that
you can test
against? What I believe is likely happening is that you
are receiving a
500 when browsing .aspx pages. The reason that shows up
when you are
creating projects is due to the way that Visual
Studio .NET 2003 handles
project creation.
When you create a new project with Visual Studio .NET
2003, we try to
browse to a non-existant file called get_aspx_ver.aspx.
What we expect to
get back is a 404, but included in that 404 is the
version of ASP.NET
that's running on the server. We can then determine
whether or not you are
running ASP.NET 1.1.
In your case, I'll bet that there's something wrong with
ASP.NET on your
machine and you're getting back a 500 at that point. A
look at the IIS
logs should confirm what's going on.
Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)
This post is provided as-is with no warranties and
confers no rights.
--------------------
Reply-To: "Marc Miller" <
[email protected]>
From: "Marc Miller" <
[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <
[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
Hi all,
I have 2 dev. machines, the 1st is Win 2000 with .NET
7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server
with IIS 5.0.
I can create a new project on my test server from the
1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from
my Web Server.
My userid/password are the same on all 3 machines.
Any ideas?
Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA
.