For anyone interested, and fellow newbe's, I have found a way to share application (session vars), over my Intranet pages.
root <---- Here is the root folder of your web app.
|
+-MyMainApp <-- This folder is where your main app lives
|
+-All thehidden folders
+-Bin <-- DLL Folder (Important)
|
+-MyOtherApp <-- Sub application1
|
+-MyOtherApp <-- Sub application2
|
+-MyOtherApp <-- Sub application3
Copy everything you need into the main application, just like normal, and for the sub apps, just copy the pages.
Copy their dll's into the main app's Bin folder and all works.
And as an added bonus, they can all share data between them!!!
Use Session() to do this. I think you can also set up a global class or module, but I have to play with it for a bit to see. Now you have another piece.
root <---- Here is the root folder of your web app.
|
+-MyMainApp <-- This folder is where your main app lives
|
+-All thehidden folders
+-Bin <-- DLL Folder (Important)
|
+-MyOtherApp <-- Sub application1
|
+-MyOtherApp <-- Sub application2
|
+-MyOtherApp <-- Sub application3
Copy everything you need into the main application, just like normal, and for the sub apps, just copy the pages.
Copy their dll's into the main app's Bin folder and all works.
And as an added bonus, they can all share data between them!!!
Use Session() to do this. I think you can also set up a global class or module, but I have to play with it for a bit to see. Now you have another piece.