PRB: Changes to ASP Scripts not Reflected on IIS 3.0 Server

ID: Q201031


The information in this article applies to:


SYMPTOMS

Changes made to an ASP Script (then saved) are not reflected in the browser when refreshed.


CAUSE

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.


RESOLUTION

To resolve this behavior, use 8-character DOS naming conventions when naming ASP files, or directories in which ASP files reside.


STATUS

Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.


MORE INFORMATION

Steps to Reproduce Behavior

  1. Create the following ASP Script and name the file "long file.asp":


  2. 
       <%@ LANGUAGE="VBSCRIPT"%>
       <HTML>;
       <BODY>
       The current system time is:  <%=Now() %>
       </BODY>
       </HTML> 
  3. Place the file on an IIS 3.0 server and bring the file up in a browser window. For example:
    http://servername/longfi~1.asp


  4. Edit "long file.asp" with the following:
    
       <%@ LANGUAGE="VBSCRIPT"%>
       <HTML>
       <BODY>
       The current system date is:  <%=Date()%>
       </BODY>
       </HTML> 


  5. Save your changes, then refresh your browser window. The changes made to the script will not be reflected.


  6. Rename "long file.asp" to "short.asp"


  7. Bring up "short.asp" in the browser window. For example:
    http://servername/short.asp


  8. The results display "The current system date is: 7/15/98" (with the current system date).


  9. Edit "short.asp" and change the script back to the original script that displayed the system time.


  10. Refresh the browser window. The changes will be reflected.


Additional query words: kbDSupport


Keywords          : kbASP kbGrpASP kbDSupport kbIIS 
Version           : winnt:3.0
Platform          : winnt 
Issue type        : kbprb 

Last Reviewed: August 2, 1999