BUG: Text After First Double Quote Not displayed in Form ViewLast reviewed: December 11, 1997Article ID: Q166894 |
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:
Function QuotedString(varTemp) If IsNull(varTemp) Then QuotedString = Chr(34) & Chr(34) Else QuotedString = Chr(34) & CStr(varTemp) & Chr(34) End If End FunctionHowever 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:
Function QuotedString(varTemp) If IsNull(varTemp) Then QuotedString = Chr(34) & Chr(34) Else QuotedString = Chr(34) & Server.HTMLEncode(CStr(varTemp)) & Chr(34) End If End Function 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 INFORMATION
Steps 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 : VIWizards kbtool kbbuglist Version : 1.0 Platform : WINDOWS Issue type : kbbug |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |