Sto seguendo il manuale dell'apogeo per imparare ad usare ASP.NET ma questo esercizio nn riesco proprio a capirlo e come risultato mi da una schermata bianca, è normale?
Mi potreste spiegare a che serve sto Rendering di codice pls?
<Script Runat="Server">
Dim strSomeText As String
Sub Page_Load
strSomeText = "Hello"
End Sub
</Script>
<html>
<head><title>CodeRender.aspx>/title></head>
<body>
<form Runat="Server">
The value of strSomeText is:
<%=strSomeText%>
<% strSomeText = "Goodbye!" %>
the value of strSomeText is:
<%=strSomeText%>
</form>
</body>
</html>