Clarification on refreshing global.asa without restarting app

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • blast8180
    New Member
    • Mar 2010
    • 2

    Clarification on refreshing global.asa without restarting app

    I'm completely new to asp, coding, and scripting. I have a business background so I'm not familiar with this world at all. That said, I'd like some help on clarifying what this article is asking of me...



    Given my global asa...

    <script language="vbscr ipt" runat="server">

    sub Application_OnS tart

    Application("cs PhoneNumber") = "12345678"

    Application("cs EmailAddress") = "1234@1234. com"

    Application("sa lesPhoneNumber" ) = "12345678"

    (10 more or so)

    end sub

    sub Application_OnE nd
    'some code
    end sub

    sub Session_OnStart
    'some code
    end sub

    sub Session_OnEnd
    'some code
    end sub

    </script>

    And given the context of that article, I need to insert some syntax - where and what?

    Second part of my question...I need to make a new start-app.asp file....

    <script language=vbscri pt runat=server>
    What's the syntax I would put in here given how my global asa looks?
    </script>
  • blast8180
    New Member
    • Mar 2010
    • 2

    #2
    Noone has any insight on this?

    Comment

    • jhardman
      Recognized Expert Specialist
      • Jan 2007
      • 3405

      #3
      looking over your global.asa, I can't see any reason why you would want to restart it. What are you trying to do?

      Jared

      Comment

      Working...