pagina
codice:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="a.aspx.vb" Inherits="prove_a" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Pagina senza titolo</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" ></asp:TextBox>
<asp:CompareValidator ID="CompareValidator1" runat="server" ControlToCompare="TextBox2" ControlToValidate="TextBox1" ErrorMessage="La data non deve essere maggiore dell'odierna" Operator="LessThanEqual" Type="Date"></asp:CompareValidator>
<asp:Button ID="Button1" runat="server" Text="Button" /></div>
</form>
</body>
</html>
codice
codice:
Protected Sub TextBox2_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox2.Init
Dim t As TextBox = DirectCast(sender, TextBox)
t.Text = DateTime.Today.ToString("d")
t.Style.Add("display", "none")
End Sub