ciao, ho installato il framework .net 2.0 su un win 2003 server e configurato un certo sito su iis. Ho creto una pagina aspx e mi aspettavo che puntando a quella pagina riuscissi a vederla, ecco la pagina:
codice:
<script language="vb" runat="server"> 
Sub Page_Load() 
time.text=Hour(Now) & ":" & Minute(Now) & ":" & Second(Now) 
End Sub 
</script> 

<html> 
<head><title>The Punctual Web Server</title></head> 
<body> 
  <h1>Welcome</h1> 
  In WebServerLand the time is currently: 
  <asp:label id="time" runat="server" /> 
</body> 
</html>
Punto alla pagina dal browse e mi viene fuori il classico errore:
Errore HTTP 404 - Impossibile trovare il file o la directory.
Internet Information Services (IIS)
cioè non la vede proprio la pagina aspx, mentre le pagine html le vede normalmente.. quale potrebbe essere il problema?