WSS Web Part password in Tool Pane - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T21:01:19Zhttp://stackoverflow.com/feeds/question/959384http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/959384/wss-web-part-password-in-tool-pane1WSS Web Part password in Tool PaneJack2009-06-06T09:53:57Z2009-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#9595060Answer by JMD for WSS Web Part password in Tool PaneJMD2009-06-06T11:31:36Z2009-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#9641281Answer by Alex Angas for WSS Web Part password in Tool PaneAlex Angas2009-06-08T09:49:39Z2009-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><asp:TextBox id="txtPassword" TextMode="password" runat="server" />
</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#9864870Answer by Ryan for WSS Web Part password in Tool PaneRyan2009-06-12T12:54:12Z2009-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>