WSS Web Part password in Tool Pane - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T21:01:19Z http://stackoverflow.com/feeds/question/959384 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/959384/wss-web-part-password-in-tool-pane 1 WSS Web Part password in Tool Pane Jack 2009-06-06T09:53:57Z 2009-06-12T12:54:12Z <p>I have a password that I want to store as property in a Web Part that can be set via the tool pain. Currently it is a String and can be clearly read. How would I go about making it * out? If this is the wrong way to be doing this what would you advice to do instead?</p> http://stackoverflow.com/questions/959384/wss-web-part-password-in-tool-pane/959506#959506 0 Answer by JMD for WSS Web Part password in Tool Pane JMD 2009-06-06T11:31:36Z 2009-06-06T11:31:36Z <p>You can use a ToolPart to create a custom control for saving/reading your data.</p> <p><a href="http://msdn.microsoft.com/en-us/library/dd584178%28office.11%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd584178(office.11).aspx</a></p> <p><a href="http://www.sharepointkings.com/2009/04/creating-custom-tool-part.html" rel="nofollow">http://www.sharepointkings.com/2009/04/creating-custom-tool-part.html</a></p> http://stackoverflow.com/questions/959384/wss-web-part-password-in-tool-pane/964128#964128 1 Answer by Alex Angas for WSS Web Part password in Tool Pane Alex Angas 2009-06-08T09:49:39Z 2009-06-08T09:49:39Z <p>In the custom ToolPart (mentioned by JMD), set the TextMode attribute on the control used for the password.</p> <pre><code>&lt;asp:TextBox id="txtPassword" TextMode="password" runat="server" /&gt; </code></pre> <p>This will output asterixes instead of the actual characters when users type.</p> http://stackoverflow.com/questions/959384/wss-web-part-password-in-tool-pane/986487#986487 0 Answer by Ryan for WSS Web Part password in Tool Pane Ryan 2009-06-12T12:54:12Z 2009-06-12T12:54:12Z <p>Expanding on Alex's answer - the password will still be stored as plain text in the configuration file and will be easily read if someone uses the UI to export the web part as a dwp file (which is just XML text).</p> <p>Look at encrypting this password as well, to get you started</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms998280.aspx" rel="nofollow">How To: Encrypt Configuration Sections in ASP.NET 2.0 Using DPAPI</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/ms998283.aspx" rel="nofollow">How To: Encrypt Configuration Sections in ASP.NET 2.0 Using RSA</a></p>