I'm having this problem but cant seem to fix it:
Dim NewsFile As String = Server.MapPath("~/App_Data/MemberNews.txt")
Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
Dim _NewsFile As String = NewsFile.Replace(Chr(13), "<br>")
lblMemberNews.Text = File.ReadAllText(_NewsFile)
End Sub
The label still formats it on the same line, have tired with "/n" but doesnt work...
|