FIX: Passing TRUE to Display Method of Script Object Returns HTML TextID: Q224934
|
By default, the Display method of a Visual InterDev 6.0 Script Object will generate its HTML text representation and Response.Write the text. This returns the text to the browser that invoked the ASP.
There are high-end scenarios where it might be useful to use a Script Object as a component for generating some HTML text. In this scenario, you can pass a TRUE parameter to the Display method of a Script Object and it returns its generated text to the caller. The caller can then merge it in with other HTML and subsequently Response.Write it out to the browser, store it in a variable, or store it in a file for later use.
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article.
This bug was corrected in Visual Studio 6.0 Service Pack 3.
For more information about Visual Studio service packs, please see the following articles in the Microsoft Knowledge Base:
Q194022 INFO: Visual Studio 6.0 Service Packs, What, Where, Why
Q194295 HOWTO: Tell That Visual Studio 6.0 Service Packs Are Installed
<%Button1.display%>
to:
<%
Dim retval
retval = Button1.display(TRUE)
Response.Write retval
%>
Additional query words:
Keywords : kbCtrl kbVisID600bug kbGrpASP kbVS600sp3fix
Version : WINDOWS:6.0
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: May 21, 1999