Why does script side code seems to be executing at client in IE9?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mark Maddox
    New Member
    • Nov 2011
    • 2

    Why does script side code seems to be executing at client in IE9?

    Using IE9 on Windows Server 2008R2, I'm stepping through code with the built-in debugger. The debugger always flags the Server.Execute call as an error saying that 'Server' is not an object. The server side is Windows 2003 R2 Standard Edition with SP2. It is running IIS v6.0.

    I'm using RUNAT=Server, so why would this not work? Why is the debugger even seeing this at the client side?

    Code:
    ***Goresdb.asp -- gets #included into other vbscripts***
    <!-- #include Virtual="Secure/Data/adovbs.inc" -->
    <SCRIPT LANGUAGE=vbscript RUNAT=Server>
    '===================================================================================
    ' Miscellaneous Section
    '===================================================================================
    '@doc
    '@module goresdb.asp | Default source file for the core database wrapper functions and subroutines
    'Server.Execute "/../constants.asp"   'include constants file
    Server.Execute ("/constants.asp")
    'Server.Execute(Server.MapPath("constants.asp"))
    '@bfunc DateTimeStamp | GetDBDateTime ||Used to retrieve the date and time from the Oracle database server
    Function GetDBDateTime()
    On Error Resume Next
    Dim Conn
    Dim Cmd
    Dim P0, P1
    
    ...
    
    </SCRIPT>
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    What is the url that you are using to access this?
    Is this ASP classic or ASP.NET?

    -Frinny

    Comment

    • Mark Maddox
      New Member
      • Nov 2011
      • 2

      #3
      ASP classic and its an internal URL. Someone suggested that the problem was the way HTM/HTML were being processed and made a configuration change to the server. I don't see why it would fail in IE9 clients and work for IE6 and IE7.

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        Please post the URL that you are using...
        I think that you aren't using the correct URL format.

        Comment

        Working...