PCBrandon
IS-IT--Management
- Jan 6, 2007
- 17
Hello,
I am looking into creating a text file that normal people can read and change the values of in English. Then my ASP can parse the configuration file and apply the settings... Example:
config.txt
ASP would search the text file for a specific field (like Name) and then apply the setting (like printing out "My App" in big bold letters at the top).
Thanks in advance!
I am looking into creating a text file that normal people can read and change the values of in English. Then my ASP can parse the configuration file and apply the settings... Example:
config.txt
Code:
{APPLICATION}
Enabled = True
Name = My App
Access = Everyone
{LAYOUT}
TextColor = White
BackgroundColor = Black
{DATABASE}
Database Type = MSACCESS
Database Name = mydb.mdb
Use Encryption = Yes
ASP would search the text file for a specific field (like Name) and then apply the setting (like printing out "My App" in big bold letters at the top).
Thanks in advance!