| |
ehvbs
Posts: 2078
Score: 50
Joined: 6/22/2005
From: Germany
Status: offline
|
Hi aloktiwari, "WScript.Echo" is a way to output data for use in standalone VBS scripts; think of it as a kind of Response.Write (not entirely sure about that - I don't do ASP). The important part of my posting was/is the regular expression. >> Dim oMT >> For Each oMT in oMTS >> WScript.Echo oMT.Value >> Next ==> >> Dim oMT, nNumber >> For Each oMT in oMTS >> nNumber = CLng( oMT.Value ) >> Next Better luck! ehvbs
|
|