Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: Need help with plain text
Re: Need help with plain text
04-07-2006, 4:39 PM
mhunter
Joined on 07-03-2005
Posts 6
Re: Need help with plain text
Reply
Quote
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