Apr 20, 2004 #1 gc1234 Programmer Mar 4, 2004 94 GB Hi Is there something is .NET similar to ASP'S chr(numberofasciichar) I'm trying to list the © symbol put it puts \A in front of it
Hi Is there something is .NET similar to ASP'S chr(numberofasciichar) I'm trying to list the © symbol put it puts \A in front of it
Apr 20, 2004 #2 cappmgr Programmer Jan 29, 2003 639 US Give this a try, Code: string str; str = Convert.ToChar(64).ToString(); Console.WriteLine("str " + str); Marty Upvote 0 Downvote
Give this a try, Code: string str; str = Convert.ToChar(64).ToString(); Console.WriteLine("str " + str); Marty
Apr 20, 2004 Thread starter #3 gc1234 Programmer Mar 4, 2004 94 GB .NET uses unicode, do you know what value it is? Upvote 0 Downvote
Apr 20, 2004 #4 cappmgr Programmer Jan 29, 2003 639 US char c = '\u0040'; Console.WriteLine("c " + c.ToString()); Upvote 0 Downvote
Apr 20, 2004 Thread starter #5 gc1234 Programmer Mar 4, 2004 94 GB well.... if i view this on the server and view the page its fine, if i view the source generated csv file its nots I used char c = '\u00A9' then the c.tostring() but i get © Upvote 0 Downvote
well.... if i view this on the server and view the page its fine, if i view the source generated csv file its nots I used char c = '\u00A9' then the c.tostring() but i get ©
Apr 20, 2004 #6 cappmgr Programmer Jan 29, 2003 639 US My appoligizes, I was reading the at sign and not the copyright symbol. Upvote 0 Downvote
Apr 20, 2004 Thread starter #7 gc1234 Programmer Mar 4, 2004 94 GB I've still got a bug though, strange one too Upvote 0 Downvote
Apr 20, 2004 #8 chiph Programmer Jun 9, 1999 9,878 US Since the development environment is also fully Unicode (finally!) you should just be able to include it in your string (or resource manager, etc). You may still have some font dependencies -- all fonts may not have that symbol. Chip H. If you want to get the best response to a question, please check out FAQ222-2244 first Upvote 0 Downvote
Since the development environment is also fully Unicode (finally!) you should just be able to include it in your string (or resource manager, etc). You may still have some font dependencies -- all fonts may not have that symbol. Chip H. If you want to get the best response to a question, please check out FAQ222-2244 first
Apr 21, 2004 Thread starter #9 gc1234 Programmer Mar 4, 2004 94 GB I see, still an issue then Upvote 0 Downvote