dmorin74 Posted August 6, 2004 Posted August 6, 2004 Pretty simple thing here. . . i've got an html page with a bunch of fields on it. WHen i submit it, i just want to save the fields to an access database. Everything works fine except if you have Accented characters, for example José, when it saves to Access, it drops the e, so im left with Jos. Im opening the access db with the OLEDB Jet driver, and issuing an Insert statement. Im stumped, never ran into this before. Any ideas would be much appreciated! Dave in CT Quote
*Gurus* Derek Stone Posted August 6, 2004 *Gurus* Posted August 6, 2004 I assume the fields are defined as Unicode data types in the Microsoft Access database. Quote Posting Guidelines
VBAHole22 Posted August 6, 2004 Posted August 6, 2004 A really complicated and slow solution would be to search for those accented characters via their ascii character codes www.asciitable.com and then append them back in somehow on the db side. But this assumes that you have unicode support in your db. Not a very pleasant solution. Quote Wanna-Be C# Superstar
dmorin74 Posted August 11, 2004 Author Posted August 11, 2004 Actually, the problem seems to be in the transfer of data between the HTML for and the page that i POST to, when i post the data my ACTION page reads the text boxes on the HTML page using request.form(FieldName), it's at this point that the data already has missing accented characters. Is there some setting on the IIS server, or the web page that i have to set in order for it to pass me the accented characters as well??? Im stumped Dave Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.