Click here to Skip to main content
15,901,284 members
Home / Discussions / C#
   

C#

 
AnswerRe: Decrypt E-Mail address Pin
CafedeJamaica19-Nov-12 8:48
professionalCafedeJamaica19-Nov-12 8:48 
GeneralRe: Decrypt E-Mail address Pin
Dave Kreskowiak20-Nov-12 6:04
mveDave Kreskowiak20-Nov-12 6:04 
GeneralRe: Decrypt E-Mail address Pin
CafedeJamaica20-Nov-12 7:38
professionalCafedeJamaica20-Nov-12 7:38 
GeneralRe: Decrypt E-Mail address Pin
Dave Kreskowiak20-Nov-12 8:00
mveDave Kreskowiak20-Nov-12 8:00 
GeneralRe: Decrypt E-Mail address Pin
CafedeJamaica20-Nov-12 8:07
professionalCafedeJamaica20-Nov-12 8:07 
GeneralRe: Decrypt E-Mail address Pin
CafedeJamaica20-Nov-12 8:08
professionalCafedeJamaica20-Nov-12 8:08 
GeneralRe: Decrypt E-Mail address Pin
Dave Kreskowiak20-Nov-12 8:13
mveDave Kreskowiak20-Nov-12 8:13 
GeneralRe: Decrypt E-Mail address Pin
CafedeJamaica20-Nov-12 8:16
professionalCafedeJamaica20-Nov-12 8:16 
GeneralRe: Decrypt E-Mail address Pin
Dave Kreskowiak20-Nov-12 8:50
mveDave Kreskowiak20-Nov-12 8:50 
GeneralRe: Decrypt E-Mail address Pin
CafedeJamaica20-Nov-12 8:55
professionalCafedeJamaica20-Nov-12 8:55 
GeneralRe: Decrypt E-Mail address Pin
CafedeJamaica20-Nov-12 8:14
professionalCafedeJamaica20-Nov-12 8:14 
GeneralRe: Decrypt E-Mail address Pin
Dave Kreskowiak20-Nov-12 8:16
mveDave Kreskowiak20-Nov-12 8:16 
GeneralRe: Decrypt E-Mail address Pin
CafedeJamaica20-Nov-12 8:19
professionalCafedeJamaica20-Nov-12 8:19 
AnswerRe: Decrypt E-Mail address Pin
harold aptroot19-Nov-12 22:53
harold aptroot19-Nov-12 22:53 
QuestionGet data back from windows process Pin
tdcmystere19-Nov-12 2:42
tdcmystere19-Nov-12 2:42 
AnswerRe: Get data back from windows process Pin
Eddy Vluggen19-Nov-12 3:10
professionalEddy Vluggen19-Nov-12 3:10 
GeneralRe: Get data back from windows process Pin
tdcmystere19-Nov-12 3:19
tdcmystere19-Nov-12 3:19 
GeneralRe: Get data back from windows process Pin
Eddy Vluggen19-Nov-12 3:42
professionalEddy Vluggen19-Nov-12 3:42 
GeneralRe: Get data back from windows process Pin
tdcmystere19-Nov-12 4:17
tdcmystere19-Nov-12 4:17 
AnswerRe: Get data back from windows process Pin
Eddy Vluggen19-Nov-12 4:37
professionalEddy Vluggen19-Nov-12 4:37 
GeneralRe: Get data back from windows process Pin
tdcmystere19-Nov-12 5:21
tdcmystere19-Nov-12 5:21 
SuggestionRe: Get data back from windows process Pin
Eddy Vluggen19-Nov-12 5:25
professionalEddy Vluggen19-Nov-12 5:25 
QuestionC# 2010 Express - SQL Server 2008 Express connection "Login failed" Pin
bneveux18-Nov-12 23:39
bneveux18-Nov-12 23:39 
AnswerRe: C# 2010 Express - SQL Server 2008 Express connection "Login failed" Pin
bneveux19-Nov-12 0:04
bneveux19-Nov-12 0:04 
QuestionWrite and read a paragraph in XML format string ? Pin
taibc18-Nov-12 16:29
taibc18-Nov-12 16:29 
Hi,

I have a text box in my form. I want to enter a pagraph in this text box, then store it as string (with XML format) into a table in SQL.

Because this is a paragraph, so the text value of the text box will include characters like: "\r\n" and "\r\n ".

But, I only can wirte and read "\n" of the text box in xml string, so I can't reload the original paragraph.

I used the below codes to write content of the text box:

C#
strContent += (txtParagraph.Text != "") ? "<CONTENT>" + txtParagraph.Text + "</CONTENT>" : "<CONTENT />";


How can I write and read a below paragraph:

"Today is Monday.....

Tomorrow is Tuesday.

This month is November !"

Thanks and regards,

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.