Grazie al seguente codice vb.net è possibile effettuare un log-on veloce.
<%@ page language="VB"%>
<script runat="server">
sub bt1Click(obj as object, e as eventargs)
dim strUser as string
strUser=userTxt.text
dim strCode as string
strCode=codeTxt.text
dim strAccesso as string
strAccesso = ""
if(strUser="innouser")AND(strCode="innocode") then
strAccesso="Accesso consentito a: <b>"+strUser+"</b>"
else
strAccesso="Accesso Negato."
end if
lbl1.text=strAccesso
end sub
</script>
<html>
<head>
<title>Log-On Veloce</title>
</head>
<body>
<form runat="server">
username: <asp:textbox value="" id="userTxt" runat="server" />
<br>
password: <asp:textbox textMode="password" value="" id="codeTxt" runat="server" />
<br>
<asp:button id="bt1" text="Accedi" onClick="bt1Click" runat="server" />
<br>
<asp:label id="lbl1" value="" runat="server" />
</form>
</body>
</html>