MinimumValue, propriété
Définit ou retourne la valeur du contrôle que vous validez, qui doit être supérieure ou égale à la valeur de cette propriété. La valeur par défaut est une chaîne vide ("").
public string MinimumValue {
get,
set
}
Exemple
L'exemple suivant montre comment utiliser la propriété MinimumValue pour valider la limite inférieure d'un contrôle Textbox.
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
rvAmount.MaximumValue = "500"
rvAmount.MinimumValue = "0"
End Sub
<mobile:Form runat=server id="RequestTransferForm" >
<mobile:Textbox runat="server" id="txtAmount"/>
<mobile:Command runat="server" id=cmdSavToChk
text="Transfer to Checking" OnClick="SavingsToChecking" />
<mobile:Command runat="server" id=cmdChkToSav
text="Transfer to Savings" OnClick="CheckingToSavings" />
<mobile:RangeValidator runat="server" Type="Integer"
id="rvAmount" ControlToValidate=txtAmount ErrorMessage="RequiredFieldValidator" />
</mobile:Form>
[C#]
void Page_Load(Object sender, EventArgs e)
{
rvAmount.MaximumValue = "500";
rvAmount.MinimumValue = "0";
}
}
<mobile:Form runat=server id="RequestTransferForm" >
<mobile:Textbox runat="server" id="txtAmount"/>
<mobile:Command runat="server" id=cmdSavToChk
text="Transfer to Checking" OnClick="SavingsToChecking" />
<mobile:Command runat="server" id=cmdChkToSav
text="Transfer to Savings" OnClick="CheckingToSavings" />
<mobile:RangeValidator runat="server" Type="Integer"
id="rvAmount" ControlToValidate=txtAmount ErrorMessage="RequiredFieldValidator" />
</mobile:Form>
Voir aussi
MaximumValue, propriété | RangeValidator, contrôle
S'applique à : RangeValidator, classe