Advertisement
Advertisement
| 07.17.2008 at 12:00PM PDT, ID: 23574500 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: |
i=0
Dim initArry()
Do While Not rs1.Eof ' Loop for each subscribed id
........ASP Code.....................
initArry(i,0) = nUsrId
initArry(i,1) = nPId
initArry(i,2) = sMailBody
ReDim Preserve initArry(i+1,2)
........ASP Code.....................
'ubound(array,1) returns the number of fields (columns) in the array
'UBound(array,2) returns the number of records (rows) in the array
maxCol = UBound(initArry,1) <----Line 160
maxRow = UBound(initArry,2)
For y=0 To maxRow
WScript.Echo "user id: " & initArry(y,0) & vbCrLf
WScript.Echo "phasing id: " & initArry(y,1) & vbCrLf
WScript.Echo "Email Body: " & initArry(y,2) & vbCrLf
next
i=i+1
rs1.MoveNext
Loop
|