Library tutorials & articles
ADO and Unicode
- Introduction
- Client-side HTML form
- Oracle Stored Procedures
- submit_to_database.asp
- database_result.asp
Client-side HTML form
The input form must be set the the UTF-8 character-set using meta tags. The purpose for setting browser
character-set is to encode all Unicode code points as UTF-8 byte streams to the submit_to_database.asp
Active Server Page.
<script language=javascript>
function submitPage()
{
document.frmMain.action='submit_to_database.asp';
document.frmMain.method='POST';
document.frmMain.submit();
}
</script>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8">
<FORM NAME=frmMain>
<pre>
Unicode Character:<INPUT TYPE="text" NAME="code_point" VALUE="">
Unicode Value: <INPUT TYPE="text" NAME="unicode_number" VALUE=""><br>
</pre>
<br>
<INPUT TYPE="button" VALUE="Submit Unicode" onClick="submitPage();">
</FORM>
Related articles
Related discussion
-
Read eMails from Outlook express using ASP
by kumaravelu (1 replies)
-
Help to Call ASP function from onclick event in HTML to pass an array
by vka (0 replies)
-
Binary Studio | software development outsourcing Ukraine
by shane124 (4 replies)
-
Typed DataSet - Migration to ODP.NET
by Ptero (0 replies)
-
Variable In Vb.Net
by chia (0 replies)
Related podcasts
-
Java Posse #213 - Newscast for Oct 23rd 2008
Newscast for Oct 23rd 2008 Fully formatted shownotes can always be found at http://javaposse.com The Android project has been released as open source, beating the rumored launch date for the source code by several months http://source.android.com/ And, Gizmodo and ZDNet both offer in-depth ...
This thread is for discussions of ADO and Unicode.