Good point. I got to thinking about a different way that I could do it. I still want to declare all of my variables on one page but if I have a variable like this on every page:
Dim strPageName
strPageName = "debug.asp"
<!--#include file="variables.asp" -->
Then on the variables page use
If strPageName = "debug.asp" then Dim strGroupName
That may cut down on the bandwidth because I don't think it will read the portions of the variables that do not meet the If criteria.
I know it sounds strange what I want to do, but I've done a lot of customization and am finding it difficult to keep track of all of my variables. This was the best way that I could think of to start organizing.
Edited by roverroad