donsafar
Posts: 90
|
| Posted: 06/28/2006, 8:57 AM |
|
I am trying to integrate codecharge studio 3.0.4.12 with an existing asp application. when I try to access the application objects in the global.asa, nothing is returned. The global.asa file has the following in it.
Sub Application_OnStart
'Web root
Application("PROFILESTORE_ROOT") = "/"
'the everyone group
Application ("PROFILESTORE_DEFAULT_GROUP_ID") = 2
End Sub
I am using the following script (in the Page_BeforeShow event) to display the application variables.
dim i
dim j
j=Application.Contents.Count
For i=1 to j
Response.Write(i & ". " & Application.Contents(i) & "<br />")
Next
Nothing is showing. The codecharge application is in a subdirectory off the web root. Why am I unable to access these variables?
_________________
Don Safar
|
 |
 |
donsafar
Posts: 90
|
| Posted: 06/28/2006, 10:21 AM |
|
Never Mind. I didn't have the application configured correctly in IIS.
_________________
Don Safar
|
 |
 |
|