Where to save the config values in classic asp.

Suppose you want to store the Connection string in classic asp.Follow the steps bellow.

1.In your application there should be a Global.asa file.
2.Please store the connection string  in Global.asa file

Sub Application_OnStart
Application("ConnString") = "put your connection string here"
End Sub

3.How to access the key in classic asp
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open Application("ConnString")