Hi i have an access 2003 database which i am connecting my asp pages to.
I currently have a connectionstring which displays the password for the database. Is if possible to have some code which generates a value which is passed to the connectionstring - thefore making it a little more secure?
so....
cnDataSource = "Data Source =C:\website\ProductCatalogue.mdb; JET OLEDB:database password=pa55w0rd"
would become...
cnDataSource = "Data Source =C:\website\ProductCatalogue.mdb; JET OLEDB:database password=" & password
many thanks,
BF
I currently have a connectionstring which displays the password for the database. Is if possible to have some code which generates a value which is passed to the connectionstring - thefore making it a little more secure?
so....
cnDataSource = "Data Source =C:\website\ProductCatalogue.mdb; JET OLEDB:database password=pa55w0rd"
would become...
cnDataSource = "Data Source =C:\website\ProductCatalogue.mdb; JET OLEDB:database password=" & password
many thanks,
BF