Greetings,
My company has asked me to begin learning ASP.NET; as such, I am currently a total noob; I only come from a light HTML, VBA, and JetSQL background.
I have installed all of the necessary components to begin my studies (IIS, .NET Framework 2.0, ASP.NET SDK). I created a very basic .aspx page and put it into C:\inetpub\
When trying to access this page through a browser via I get a prompt for authentication. When entering my domain name and password (Active Directory), it does not authenticate. I am an admin on my local machine. All of the permissions on the C:\inetpub folder (and all subfolders) are set for full access to power users.
Here is the .aspx page:
I expect to see only this in my browser:
Welcome to ASP.NET!
Any ideas?
~Melagan
______
"It's never too late to become what you might have been.
My company has asked me to begin learning ASP.NET; as such, I am currently a total noob; I only come from a light HTML, VBA, and JetSQL background.
I have installed all of the necessary components to begin my studies (IIS, .NET Framework 2.0, ASP.NET SDK). I created a very basic .aspx page and put it into C:\inetpub\
When trying to access this page through a browser via I get a prompt for authentication. When entering my domain name and password (Active Directory), it does not authenticate. I am an admin on my local machine. All of the permissions on the C:\inetpub folder (and all subfolders) are set for full access to power users.
Here is the .aspx page:
Code:
<%@ Page Language="VB" %>
<script runat="server">
sub Page_Load(obj as Object, e as eventargs)
lblMessage.Text = "Welcome to ASP.NET!"
end sub
</script>
<html><body>
<asp:Label id="lblMessage" runat="server"/>
</body></html>
I expect to see only this in my browser:
Welcome to ASP.NET!
Any ideas?
~Melagan
______
"It's never too late to become what you might have been.