The information in this article applies to:
SYMPTOMSWhen viewing the content of a database with a form created by the DataForm Wizard, if the database has a record with text of the form something "quoted text," nothing starting with the first double quote is displayed. CAUSEThe function named QuotedString in the file xxxForm.asp generated by the wizard has this function:
However CStr(varTemp) needs to be HTML encoded, so if the string includes a
double quote, it is changed to an equivalent value including the escape
character of the double quote (Chr(34)).
RESOLUTIONThe function that needs to be changed in the XXXForm.asp is called QuotedString. The correct function should look like this:
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available. MORE INFORMATIONSteps to Reproduce Behavior
REFERENCESFor the latest Knowledge Base articles and other support information on Visual InterDev and Active Server Pages, see the following page on the Microsoft Technical Support site: http://support.microsoft.com/support/vinterdev/
Keywords : kbtool kbwizard kbVisID kbVisID100 kbGrpASP |
Last Reviewed: November 8, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |