Guest User

Untitled

a guest
Jan 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. strContent = Regex.Replace(strContent, "<.*?>", "")
  2.  
  3. If strContent.Length > 400 Then
  4. strContent = strContent.Substring(0, 400)
  5. btnMore.Visibile = True
  6. Else
  7. btnMore.Visibile = False
  8. End If
  9.  
  10. Regex.Replace(htmlText, "<.*?>", string.Empty);
Add Comment
Please, Sign In to add comment