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 |
|
|
Com If a indicação, tomada de decisão simples em básico visual ocorrer, que tem o seguinte formato geral.
|
If condition Then
...statements
End If
|
|
Operadores condicionais
|
Usando operadores relacionais, as expressões condicionais são ajustadas até comparam valores e estes operadores, que foram apresentados mais cedo, são repetidos na seguinte tabela.
|
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. |
|
Uma expressão condicional é dada forma relacionando valores -- constantes ou variáveis -- com estes operadores. A comparação é avaliada como verdadeiro ou falso booleano, e o certificado reage a essa circunstância. O seguinte certificado apresenta um exemplo simples da tomada de decisão do certificado.
|
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"/>
|
|
Operadores lógicos
|
Às vezes você necessita combinar testes da circunstância e essa vez, você pôde necessitar saber If um valor numérico estivesse dentro de uma escala particular; isto é, If o número é mais grande de um valor e menos do que um outro valor. Ou, você pôde querer ver If o número fosse fora de uma escala testando If é menos de um valor ou mais grande do que um segundo valor e estes tipos de testes da combinação estão feitos possíveis usando uns testes dois ou mais relacionais combinados com os operadores lógicos e, ou, e para não dar forma a comparações múltiplas. Estes operadores foram apresentados mais cedo e são repetidos na tabela dada abaixo.
|
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.
|
|
Abaixo está um exemplo que use um teste múltiplo da circunstância e após ter incorporado um valor à caixa de texto, estala a tecla da “verificação”. O certificado determina If você incorporar um número entre 1 e 10.If assim, confirma este valor com uma mensagem.
|
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"/>
|
|
If Number.Text <> "" Then
checks whether a value has been entered into the textbox (it is not equal to empty, or null) and if this condition is true, then the enclosed statements are executed. The enclosed statements form a second If test and in this case the value entered in the textbox is tested so see if it is greater than or equal to 1 and if it is less than or equal to 10. If these two conditions are true, then only the message is displayed
|
 |
 |
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 |
|
|