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.
[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 ------ code ends here.... hope that helps...