Page 1 of 1

Password in OleDB ConnectionString

Posted: Wed Oct 23, 2013 7:14 pm
by jkoo
Hi

I don't want user see user/password of connection string at Report designer.
Is there a way to hide password or encrypt password in the report file?
Or
Is there a way to set password programatically for report designer?

Thanks

Re: Password in OleDB ConnectionString

Posted: Thu Oct 24, 2013 10:30 am
by HighAley
Hello.

The connection string is encrypted in the report template file.
You could use next option to restrict modifying of the connnection:

Code: Select all

StiWebDesignerOptions.Dictionary.AllowModifyConnections = false;
Thank you.