Click here to Skip to main content
15,913,773 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: asp.net Pin
Abhinav S21-Jul-10 18:41
Abhinav S21-Jul-10 18:41 
Questionproblem in restoring mysql dump file using C#.net Pin
sr15920-Jul-10 1:10
sr15920-Jul-10 1:10 
AnswerRe: problem in restoring mysql dump file using C#.net Pin
Richard MacCutchan20-Jul-10 2:09
mveRichard MacCutchan20-Jul-10 2:09 
AnswerRe: problem in restoring mysql dump file using C#.net Pin
Pete O'Hanlon20-Jul-10 4:25
mvePete O'Hanlon20-Jul-10 4:25 
Generalproblem solved thnk you for all who replied to me Pin
sr15921-Jul-10 22:33
sr15921-Jul-10 22:33 
AnswerRe: problem in restoring mysql dump file using C#.net Pin
Arjun Jutur Sathyanarayana8-Aug-10 22:48
Arjun Jutur Sathyanarayana8-Aug-10 22:48 
QuestionHow to encode an extended ASCII in .NET? Pin
Venkatesh Mookkan19-Jul-10 18:44
Venkatesh Mookkan19-Jul-10 18:44 
AnswerRe: How to encode an extended ASCII in .NET? Pin
Luc Pattyn19-Jul-10 23:06
sitebuilderLuc Pattyn19-Jul-10 23:06 
You have an encoding problem, which you should try and solve using the Encoding class.

There is no such thing as an extended ASCII encoding, or almost everything is an extended ASCII encoding, i.e. most encodings use more than 128 characters and keep the first 128 compatible with ASCII for obvious reasons.

Try using Encoding encoding=new Encoding(codepage); where codepage is an appropriate integer value. In Western-Europe 1252 would be the first one to try. I can't tell for your region though.

Once you have the right Encoding object, either use some of its methods to perform a conversion, or better yet, pass it as an extra parameter to your file operations, e.g. File.ReadAllText(String, Encoding)

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.


GeneralRe: How to encode an extended ASCII in .NET? Pin
Venkatesh Mookkan20-Jul-10 19:51
Venkatesh Mookkan20-Jul-10 19:51 
Questionasmx web service to access SQL server database. [modified] Pin
code4wcf19-Jul-10 4:20
code4wcf19-Jul-10 4:20 
AnswerRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 5:38
mentorNot Active19-Jul-10 5:38 
GeneralRe: asmx web service to access SQL server database. [modified] Pin
code4wcf19-Jul-10 8:12
code4wcf19-Jul-10 8:12 
GeneralRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 8:43
mentorNot Active19-Jul-10 8:43 
GeneralRe: asmx web service to access SQL server database. Pin
code4wcf19-Jul-10 9:58
code4wcf19-Jul-10 9:58 
GeneralRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 10:16
mentorNot Active19-Jul-10 10:16 
GeneralRe: asmx web service to access SQL server database. Pin
Ennis Ray Lynch, Jr.19-Jul-10 10:30
Ennis Ray Lynch, Jr.19-Jul-10 10:30 
AnswerRe: asmx web service to access SQL server database. Pin
Luc Pattyn19-Jul-10 10:56
sitebuilderLuc Pattyn19-Jul-10 10:56 
GeneralRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 11:32
mentorNot Active19-Jul-10 11:32 
GeneralRe: asmx web service to access SQL server database. Pin
code4wcf21-Jul-10 16:19
code4wcf21-Jul-10 16:19 
QuestionHow do i draw my "user control UI" faster and more efficient [modified] Pin
Rejnev19-Jul-10 2:14
Rejnev19-Jul-10 2:14 
AnswerRe: How i draw my "user control UI" faster and more efficient Pin
Eddy Vluggen19-Jul-10 2:38
professionalEddy Vluggen19-Jul-10 2:38 
GeneralRe: How i draw my "user control UI" faster and more efficient [modified] Pin
Rejnev19-Jul-10 3:00
Rejnev19-Jul-10 3:00 
GeneralRe: How i draw my "user control UI" faster and more efficient Pin
Eddy Vluggen19-Jul-10 5:16
professionalEddy Vluggen19-Jul-10 5:16 
Generalit's done Pin
Rejnev19-Jul-10 5:30
Rejnev19-Jul-10 5:30 
GeneralRe: it's done Pin
Eddy Vluggen19-Jul-10 5:58
professionalEddy Vluggen19-Jul-10 5:58 

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.