Before Editing Post
Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
HTML Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
PHP Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
vb.net Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
After Editing Post
Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
HTML Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
PHP Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
vb.net Code:
Character Entity Number Entity Name Description
" " " quotation mark
' ' ' apostrophe
& & & ampersand
< < < less-than
> > > greater-than
Test 2 digit line numbers....
vb.net Code:
For i As Integer = 0 To threadPosts.Count - 1
With threadPosts(i)
SB.AppendLine("Title: " & .Title)
SB.AppendLine("URL: " & threadBaseURL & .URL_ID)
SB.AppendLine("Started by: " & .Poster & ", " & .PosterDate)
SB.AppendLine("Views: " & .Views)
SB.AppendLine("Replies: " & .Replies)
SB.AppendLine("Last reply by: " & .LastReplyBy & ", " & .LastReplyDate)
SB.AppendLine("--------------------------------------------------------------------------")
End With
Next