View previous topic :: View next topic |
Author |
Message |
chrisp45 -
Joined: 09 Jun 2003 Posts: 2
|
Posted: Mon Jun 09, 2003 8:44 am Post subject: Application Variables |
|
|
Have been developing an ASP project using IIS on Windows 2000. Have now transfered it to Abyss Web Server/aHTML on Windows XP.
Abyss Web Server/aHTML installed fine (as far as I can tell, followed instructions posted on this site)
The pages display fine however have found one problem.
The application does not retrieve any application variables from the global asa.
Global asa shown below:
[code]
<script language="VBScript" runat="server">
Sub Application_OnStart
Application("Title")="Online DMS"
End Sub
Sub Application_OnEnd
Set Application("Title")=Nothing
End Sub
</script>
[/code]
Code extract shown below:
[code]
<head>
<title><%=Application("Title")%></title>
</head>
[/code]
Do I have to change my code to fit Abyss Web Server/aHTML?
Is it a problem with the server configuration?
You will have to excuse me if this is a really silly question that has an obvious answer but i'm a newbie and i'm stuck so bare with me.
Thanks A Lot. |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Mon Jun 09, 2003 11:34 pm Post subject: Re: Application Variables |
|
|
Your question is related to the ASP interpreter ActiveHTML and not to Abyss directly. Please direct it to SeliSoft support (http://www.selisoft.com/) as they are the authors of ActiveHTML and know more about it than us :D _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
chrisp45 -
Joined: 09 Jun 2003 Posts: 2
|
Posted: Tue Jun 10, 2003 9:13 am Post subject: Application Variables |
|
|
Thank You Kindly |
|
Back to top |
|
 |
|