ASP Classic Paragraph Collection

I need to be able to go back and change the bullet colors of a list that was added using insertHTML. The code to do it in asp.net would be:

Dim paragraphs As NodeCollection = doc.GetChildNodes(NodeType.Paragraph, True)
'Loop through all paragraphs
For Each par As Paragraph In paragraphs
    'Check whether current paragraph is list item
    If (par.IsListItem) Then
        If par.ListFormat.ListLevel.NumberStyle.Equals(NumberStyle.Bullet) Then
            par.ListFormat.ListLevel.Font.Color = "#FFFFFF"
        End If
Next

Can you advise me as to what the correct code would be to get access to the Paragraph nodes in Classic ASP VB would be?

Hi

Thanks for your inquiry. I think, in your case you should use COM wrapper. Please see the following link for more information:
https://forum.aspose.com/t/68452
Hope this helps.
Best regards.