VBScript Tutorial
VBScript is a scripting language.
VBScript was created by Microsoft to use either as a client-side scripting language for the Microsoft Internet Explorer (versions 3.0 and later) or as a server-side scripting language with the Microsoft Internet Information Server (versions 3.0 and later).
A primary advantage for using the server-side approach is that the VBScript is processed by the server before it is transmitted to the client.
|
Go4Expert Member
|
|
| 19Jun2007,09:34 | #2 |
|
would you tell me hew i use + operator in vb script
|
|
Go4Expert Member
|
|
| 7Jul2007,14:17 | #3 |
|
[qoute]would you tell me hew i use + operator in vb script[/qoute]
value is a numeric data type... you could use it to add... values... For a string use the operator ... "&" e.g. Code:
dim intNum1, intNum2, intNum3 dim strStr1, strStr2, strStr3 intNum1 = 1 intNum2 = 1 strStr1 = "Hello" strStr2 = "World" intNum3 = intNum1 + intNum2 strStr3 = strStr1 & " " & strStr2 msgbox intNum3 & vbCrLf & strStr3 hope that helps... Last edited by shabbir; 7Jul2007 at 19:18.. Reason: Code block |
|
Go4Expert Founder
|
![]() |
| 7Jul2007,19:19 | #4 |
|
Offtopic comment:
its QUOTE and qoute
|

