FIX: Editing ASP Pages Using FrontPage 98 Causes ProblemsID: Q190939
|
An Active Server Pages (ASP) page created in Visual InterDev and edited in FrontPage 98 successfully appears the first time it is previewed, but displays errors if the page round trips to the server and back or you link to another page through server-side code.
The Scripting Object Model in Visual InterDev requires some specific text at the top of the page and just after the end </BODY> tag. This text includes a <FORM> tag. FrontPage does not allow <FORM> tags outside of the <BODY> tags. When you save a Visual InterDev ASP page that has the Scripting Model enabled (required for correct functionality of the Design- Time Controls) in FrontPage 98, the <FORM> tags will be moved to immediately follow the initial <BODY> tag. This means that none of the Design-Time Controls (DTC) within the <BODY> tags will be within the <FORM> tags, so any Post to the server will not recognize them
To preserve the round trip and server-side processing of code related to
the DTCs, do not use FrontPage 98 to edit ASP pages that are dependent on
the Scripting Object Model.
If you have already edited a page in FrontPage 98, use the following steps
to restore the functionality:
<% ' VI 6.0 Scripting Object Model Enabled %>
<!--#include file="_ScriptLibrary/pm.asp"-->
<% if StartPageProcessing() Then Response.End() %>
<form name="thisForm" METHOD="post">
</form>
<% ' VI 6.0 Scripting Object Model Enabled %>
<% EndPageProcessing() %>
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
FrontPage 98 may also move script blocks or controls that were placed above
the <BODY> tag to below the <BODY> tag. The script is generally maintained in whole blocks and therefore does not usually cause a problem.
The scripting object model uses hidden elements on the client to pass
information back to the server. These elements are created on the fly
through the call to EndPageProcessing(). This call must appear before the
</FORM> tag, or the hidden elements are not part of the HTML form and have no effect.
Sub Button1_onclick()
Label1.setCaption(Label1.getCaption() & "*")
End Sub
Additional query words:
Keywords : kbservicepack kbExtension kbFrontPage kbServer kbVisID600bug kbGrpASP kbVS600sp2 kbVS600SP1 kbVS600sp3fix kbFrontPageX
Version : WINDOWS:6.0
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: July 9, 1999