Hi,
I just started learning ASP.NET this week so this might not be the best way to do it but I tried it and it works! : )
<%@ Page Language="VB" %>
<script runat="server">
Dim MyName As String
Sub Page_Load
MyName = "Meiko"
End Sub
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<% If MyName = "Meiko" %>
Yes
<% Else %>
No
<% End If %>
</form>
</body>
</html>
Error: Keyboard not found, press any key to continue.