Click here to Skip to main content
15,893,814 members
Home / Discussions / C#
   

C#

 
Generalexamples UI datagrid/collection Pin
haezeban16-Jul-03 4:15
haezeban16-Jul-03 4:15 
GeneralCopy, Paste and Find Pin
totig16-Jul-03 3:00
totig16-Jul-03 3:00 
GeneralWhat's the question Pin
ResCode15-Jul-03 16:26
ResCode15-Jul-03 16:26 
GeneralRe: What's the question Pin
ResCode16-Jul-03 18:18
ResCode16-Jul-03 18:18 
Generalmisterbear Pin
misterbear15-Jul-03 13:07
misterbear15-Jul-03 13:07 
GeneralRe: misterbear Pin
J. Dunlap15-Jul-03 13:57
J. Dunlap15-Jul-03 13:57 
GeneralC# CDO email Encoding HELP please Pin
Member 7681715-Jul-03 12:36
Member 7681715-Jul-03 12:36 
GeneralRe: C# CDO email Encoding HELP please Pin
Radoslav Bielik15-Jul-03 13:19
Radoslav Bielik15-Jul-03 13:19 
I had the same problem when sending plain-text e-mail using the System.Web.Mail.SmtpMail class. The page you were referred to just explains that using bare LF characters (line feed) in an email message sent through SMTP is violation of some specification, and perhaps some SMTP servers seem to tolerate this? (someone who know more about this issue could back me up on this Smile | :) ) I solved the problem by replacing all LF characters by CR-LF (carriage return, line feed) combinations, i.e. if the original string looked like this:
<br />
string textBody="Hello\n\nThis is a message\nThanks";<br />

It should look like this after the correction:
<br />
string textBody="Hello\r\n\r\nThis is a message\r\nThanks";<br />


Hope this helps!

Rado
GeneralRe: C# CDO email Encoding HELP please Pin
Member 7681715-Jul-03 13:24
Member 7681715-Jul-03 13:24 
GeneralRe: C# CDO email Encoding HELP please Pin
Radoslav Bielik16-Jul-03 11:33
Radoslav Bielik16-Jul-03 11:33 
QuestionHow to execute an application from C# Pin
Darryl Borden15-Jul-03 10:23
Darryl Borden15-Jul-03 10:23 
AnswerRe: How to execute an application from C# Pin
David Stone15-Jul-03 10:41
sitebuilderDavid Stone15-Jul-03 10:41 
GeneralRe: How to execute an application from C# Pin
Stephane Rodriguez.16-Jul-03 2:20
Stephane Rodriguez.16-Jul-03 2:20 
GeneralRe: How to execute an application from C# Pin
David Stone16-Jul-03 7:08
sitebuilderDavid Stone16-Jul-03 7:08 
GeneralRe: How to execute an application from C# Pin
Stephane Rodriguez.16-Jul-03 8:04
Stephane Rodriguez.16-Jul-03 8:04 
GeneralRe: How to execute an application from C# Pin
David Stone16-Jul-03 11:14
sitebuilderDavid Stone16-Jul-03 11:14 
GeneralRe: How to execute an application from C# Pin
Stephane Rodriguez.16-Jul-03 19:15
Stephane Rodriguez.16-Jul-03 19:15 
GeneralRe: How to execute an application from C# Pin
David Stone17-Jul-03 5:41
sitebuilderDavid Stone17-Jul-03 5:41 
GeneralInvalidOperationException Pin
Kant15-Jul-03 9:09
Kant15-Jul-03 9:09 
GeneralRe: InvalidOperationException Pin
Kant15-Jul-03 9:34
Kant15-Jul-03 9:34 
GeneralRe: InvalidOperationException Pin
Nick Parker15-Jul-03 9:45
protectorNick Parker15-Jul-03 9:45 
GeneralRe: InvalidOperationException Pin
Kant15-Jul-03 10:12
Kant15-Jul-03 10:12 
GeneralRe: InvalidOperationException Pin
Kant15-Jul-03 12:06
Kant15-Jul-03 12:06 
GeneralRe: InvalidOperationException Pin
Nick Parker15-Jul-03 17:12
protectorNick Parker15-Jul-03 17:12 
GeneralGDI+ Pin
Mazdak15-Jul-03 8:39
Mazdak15-Jul-03 8:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.