The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
Question: How can I display other character sets such as Chinese and Turkish?
Answer: Use the following lines to replace "fString = Server.HTMLEncode(fString)" in inc_functions.asp.
Code provided by: SDIY (Chinese) and tested by: hayrullah jr (Turkish)
ASPDiva Forum - http://www.aspdiva.com/forum/default.asp
<
Answer: Use the following lines to replace "fString = Server.HTMLEncode(fString)" in inc_functions.asp.
fString = Replace(fString, "<", "<")
fString = Replace(fString, ">", ">")
Code provided by: SDIY (Chinese) and tested by: hayrullah jr (Turkish)
ASPDiva Forum - http://www.aspdiva.com/forum/default.asp
<