Re: Need help with plain text

  •  04-07-2006, 4:39 PM

    Re: Need help with plain text

    Looks like I found the solution in c# as the following:

    string plainbody = Editor1.PlainTextWithLinefeeds + endtagtxt;

    string stripped = Regex.Replace(plainbody,@"<(.|\n)*?>",string.Empty);

    msg.PlainMessage.Body = stripped;
     
     
View Complete Thread