Hi!
in web.config connection string we write
Persist Security Info=False and
Pooling=False
what happening when we not write these two attributes?
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Mar 29, 2010, 9:21 AM
Persist security info="true" or "false" means you are setting the information for encryption of your password in connection string with username.
and Pooling="true" or "false" means no. of connection your server is accepting for database at one time. It is related to Pool of connection at a server.
hope it helps.
Please mark as answer if it helps.
Hirendra SisodiyaPosted Mar 29, 2010, 8:23 AM
Persist Security Info=False' means security-sensitive information,such as the password, is not returned as part of the connection if the connection is open or has ever been in an open state.Resetting the connection string resets all connection string values including the password.
and for understand second term Pooling=False, you can go to MSDN:
http://msdn.microsoft.com/en-us/library/aa719770(VS.71).aspx
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring(VS.71).aspx
thanks
please mark as answere if it helps