codice:
<%@ Page language="VB" %>

<script runat="server">
Sub Page_Load(Sender as Object, E as Eventargs)
  label.Text = "La mia prima pagina con ASP.NET"
End Sub
</script>

<html>
<head>
  <title>ASP.NET</title>
</head>
<body>
<asp:label id="label" runat="server"></asp:label>
</body>
</html>
Ho scritto questo codice ma se lo carico sul server non vedo nulla

Questo vuol dire che il server non supporta .net?


Ciao