PRB: Changes to ASP Scripts not Reflected on IIS 3.0 ServerID: Q201031
|
Changes made to an ASP Script (then saved) are not reflected in the browser when refreshed.
This behavior occurs if there is a long file name in the path to the ASP Script. The long file name can be a directory name, or the name of the ASP file itself.
To resolve this behavior, use 8-character DOS naming conventions when naming ASP files, or directories in which ASP files reside.
Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
<%@ LANGUAGE="VBSCRIPT"%>
<HTML>;
<BODY>
The current system time is: <%=Now() %>
</BODY>
</HTML>
http://servername/longfi~1.asp
<%@ LANGUAGE="VBSCRIPT"%>
<HTML>
<BODY>
The current system date is: <%=Date()%>
</BODY>
</HTML>
http://servername/short.asp
Additional query words: kbDSupport
Keywords : kbASP kbGrpASP kbDSupport kbIIS
Version : winnt:3.0
Platform : winnt
Issue type : kbprb
Last Reviewed: August 2, 1999