HTML Tutorials |
|
XML Tutorials |
|
Browser Scripting |
|
Server Scripting |
|
.NET (dotnet) |
|
Multimedia |
|
Web Building |
|
Java Tutorials |
|
Programming Langauges |
|
Soft Skills |
|
Database Tutorials |
|
Operating System |
|
Software Testing |
|
SAP Module |
|
Networking Programming |
|
Microsoft Office |
|
Accounting |
|
|
Con se la dichiarazione, risoluzione semplice in di base visivo avviene, che ha la seguente disposizione generale.
|
If condition Then
...statements
End If
|
|
Conditional Operators
|
Usando gli Operators relazionali, le espressioni condizionali sono regolate fino a confrontano i valori e questi Operators , che sono stati presentati pi� presto, sono ripetuti nella seguente tabella.
|
Operator |
Use |
= |
Tests whether two values are equal. |
<> |
Tests whether two values are not equal. |
< |
Tests whether the first value is less than the second value. |
> |
Tests whether the first value is greater than the second value. |
<= |
Tests whether the first value is less than or equal to the second
value. |
>= |
Tests whether the first value is greater than or equal to the second
value. |
|
Un'espressione condizionale � costituita dal collegare i valori -- costanti o variabili -- con questi Operators . Il confronto � valutato come allineare o falso booleano e lo scritto reagisce a quella circostanza. Il seguente scritto presenta un esempio semplice di risoluzione dello scritto.
|
Sub Button_Click (Src As Object, Args As CommandEventArgs)
If Args.CommandName = "Button 1" Then
ButtonResponse.Text = "You clicked Button 1"
End If
End Sub
<asp:Button Text="Click Me" runat="server"
OnCommand="Button_Click" CommandName="Button 1"/>
<asp:Button Text="Click Me" runat="server"
OnCommand="Button_Click" CommandName="Button 2"/>
<asp:Label id="ButtonResponse" EnableViewState="False" runat="server"/>
|
|
Logical Operators
|
A volte dovete unire le prove di circostanza e quel volta, potreste avere bisogno di di sapere se un valore numerico � all'interno di una gamma particolare; cio� se il numero � pi� grande di un valore e di meno che un altro valore. O, potreste desiderare vedere se il numero � fuori di una gamma esaminando se � meno d'un valore o pi� grande di un secondo valore e questi generi di prove di combinazione sono permessi usando prove due o pi� relazionali unite con gli Operators logici e, o e non formare i confronti multipli. Questi Operators sono stati presentati pi� presto e sono ripetuti nella tabella data sotto.
|
Logical
Operator |
Comparison |
And |
condition1 And condition2
The condition1 and
condition2 tests both must be true for
the expression to be evaluated as True. |
Or |
condition1 Or condition2
Either the condition1 or
condition2 test must be true for the
expression to be evaluated as True. |
Not |
Not condition
The expression result is set to its opposite; a True
condition is set to False and a
False condition is set to
True. |
Xor |
condition1 Xor condition2
Either condition1 is true or
condition2 is true, but not both, for
the condition test to be evaluated as True.
|
|
Sotto � un esempio che usa una prova multipla di circostanza e dopo avere fornito un valore nella casella di testo, scatta il tasto �del controllo�. Lo scritto determina se forniste un numero fra 1 e 10.If cos�, conferma questo valore con un messaggio.
|
Sub Check_Number (Src As Object, Args As EventArgs)
If Number.Text <> "" Then
If Number.Text >= 1 And Number.Text <= 10 Then
NumberResponse.Text = "The number is between 1 and 10."
End If
End If
End Sub
<asp:TextBox id="Number" Size="1" runat="server"/>
<asp:Button Text="Check" OnClick="Check_Number" runat="server"/>
<asp:Label id="NumberResponse" EnableViewState="False" runat="server"/>
|
|
Se il "" <> di Number.Text allora lo controlla se un valore sia inserito nel textbox (non � uguale svuotarsi, o posizione di segnale minimo) e se questa circostanza � allineare, allora le dichiarazione incluse sono eseguite. Le dichiarazione incluse formano un secondo se la prova ed in questo caso il valore inserito nel textbox � esaminata in modo da vedono se � superiore o uguale a 1 e se � inferiore o uguale a 10. Se queste due circostanze sono allineare, quindi soltanto il messaggio � visualizzato
|
|
|
Keywords:
The If Statement in VB.NET,
if shell script,
if unix shell,
switch case statement,
if visual basic,
while loop statement,
sql server if,
for loop statement,
sql server statement,
if perl,
php if,
if unix,
java statement,
javascript if,
sql if
|
|
HTML Quizes |
|
XML Quizes |
|
Browser Scripting Quizes |
|
Server Scripting Quizes |
|
.NET (dotnet) Quizes |
|
Multimedia Quizes |
|
Web Building Quizes |
|
Java Quizes |
|
Programming Langauges Quizes |
|
Soft Skills Quizes |
|
Database Quizes |
|
Operating System Quizes |
|
Software Testing Quizes |
|
SAP Module Quizes |
|
Networking Programming Quizes |
|
Microsoft Office Quizes |
|
Accounting Quizes |
|
|