|
ASP/MSSQL Program Help Needed
I am trying to move one of my web sites from one server to another and cannot do it because of an ecrypted file of which is below...
I am hoping one of you guru's over here can help me figure out some new connection strings that will work...
--------------------Start Code--------------
Dim gstrMasterConnectionString, oMCGSTRDecrypt
Set oMCGSTRDecrypt = Server.CreateObject("MCom.MEncrypt")
gstrMasterConnectionString = "Provider=SQLOLEDB; Data Source=" &
oMCGSTRDecrypt.Decrypt("FCF0B3576D658A78564AE88FD2 851543") & ";"
gstrMasterConnectionString = gstrMasterConnectionString & "
Initial Catalog=" &
oMCGSTRDecrypt.Decrypt("153B557B6A42DD0DBF07EDE41E 154343") & ";"
gstrMasterConnectionString = gstrMasterConnectionString & " User
ID=" & oMCGSTRDecrypt.Decrypt("153B557B6A42DD0DBF07EDE41E 154343")
& ";"
gstrMasterConnectionString = gstrMasterConnectionString & "
Password=" &
oMCGSTRDecrypt.Decrypt("C42833993BB8B32AC074F4E4A3 29B40F") & ";"
Set oMCGSTRDecrypt = Nothing
------------------End Code ----------
|