salve ragazzi premettendo che sono un neofita dell asp.net e ho sempre utilizzato asp3.0, nn riescoa capire perchè nn mi visualizza la pagina.
hO installato correttamente il framework eseguo con web matrix un listato semplicissiomo: il seguente
codice:
<%@Page Language=”VB” Inherits=”Ch1CodeBehind”
src=”Components\Ch1CodeBehind.vb”%>
<html>
<body>
<form runat="server">


Inserisci il tuo nome:
<asp:TextBox id="Name" runat="server"></asp:TextBox></p>


Premi il bottone:
<asp:Button id="Button1" onclick="Button1_Click" runat="server"
text="Premi"></asp:Button></p>


Il tuo nome è:
<asp:Label id="YourName" runat="server"></asp:Label></p>
</form>
</body>
</html>
e mi da il seguente errore:
codice:
Parser Error Message: '”VB”' is not a supported language.

Source Error: 


Line 1:  <%@Page Language=”VB” Inherits=”Ch1CodeBehind”
Line 2:  src=”Components\Ch1CodeBehind.vb”%>
Line 3:  <html>