<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Manage database of ASP.NET 2.0 Membership &amp;amp; Role services  in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx</link><description>One question I’ve seen asked a few times by people in the NG is “how do I manage ASP.NET Membership, Role Management database in non-ASP.NET application/context”. This blog entry walks you though a few simple steps on how to-do this. Quick Review: What</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Manage database of ASP.NET 2.0 Membership &amp; Role services in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#1307169</link><pubDate>Sun, 17 Dec 2006 02:28:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1307169</guid><dc:creator>.Net Adventures </dc:creator><description>&lt;p&gt;This article explains how to manage database of ASP.NET 2.0 Membership &amp;amp;amp; Role services in non-ASP.NET&lt;/p&gt;
</description></item><item><title>re: Manage database of ASP.NET 2.0 Membership &amp; Role services  in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#2085467</link><pubDate>Wed, 11 Apr 2007 14:59:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2085467</guid><dc:creator>Tom</dc:creator><description>&lt;p&gt;When i use a custom membershipProvider in a windows application, i get the following error:&lt;/p&gt;
&lt;p&gt;Could not load type 'GISVL.DALI.daliRegistration.daliRegistrationMembershipProvider' from assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'&lt;/p&gt;
&lt;p&gt;In my app.config:&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;system.web&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;membership defaultProvider=&amp;quot;DALIMembershipProvider&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;providers&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;clear/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;add name=&amp;quot;DALIMembershipProvider&amp;quot; type=&amp;quot;GISVL.DALI.daliRegistration.daliRegistrationMembershipProvider&amp;quot; connectionStringName=&amp;quot;DALITestDatabank&amp;quot; enablePasswordRetrieval=&amp;quot;false&amp;quot; enablePasswordReset=&amp;quot;true&amp;quot; passwordFormat=&amp;quot;Hashed&amp;quot; passwordAttemptWindow=&amp;quot;3&amp;quot; requiresQuestionAndAnswer=&amp;quot;false&amp;quot; requiresUniqueEmail=&amp;quot;true&amp;quot; minRequiredPasswordLength=&amp;quot;8&amp;quot; minRequiredNonalphanumericCharacters=&amp;quot;1&amp;quot; passwordStrengthRegularExpression=&amp;quot;&amp;quot; applicationName=&amp;quot;AGIV&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/providers&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/membership&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/system.web&amp;gt;&lt;/p&gt;
&lt;p&gt;Can u help me?&lt;/p&gt;
</description></item><item><title>re: Manage database of ASP.NET 2.0 Membership &amp; Role services  in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#2272751</link><pubDate>Wed, 25 Apr 2007 17:34:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2272751</guid><dc:creator>stcheng</dc:creator><description>&lt;p&gt;change to this:&lt;/p&gt;
&lt;p&gt;============&lt;/p&gt;
&lt;p&gt; &amp;lt;add name=&amp;quot;DALIMembershipProvider&amp;quot; type=&amp;quot;GISVL.DALI.daliRegistration.daliRegistrationMembershipProvider, [put theASSEMBLY_NAME here]&amp;quot; &lt;/p&gt;
&lt;p&gt;............&lt;/p&gt;
&lt;p&gt;/&amp;gt;&lt;/p&gt;
&lt;p&gt;==============&lt;/p&gt;
&lt;p&gt;when specify type in config file, you need to put both class full name and its assembly name&lt;/p&gt;
</description></item><item><title>Re:  Connecting one webserver to two different databases containing asp.net.membership class tables</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#4293438</link><pubDate>Wed, 08 Aug 2007 17:43:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4293438</guid><dc:creator>Sadnra Long</dc:creator><description>&lt;p&gt;I need to connect one web server to two different databases containing asp.net membership class tables. &amp;nbsp;How should asp.net membership class be configured?&lt;/p&gt;
</description></item><item><title>re: Manage database of ASP.NET 2.0 Membership &amp; Role services  in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#8420437</link><pubDate>Thu, 24 Apr 2008 04:53:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8420437</guid><dc:creator>william</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I want to use membership APIs in C# dll, instead of in windows app, is it durable?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;p&gt;William&lt;/p&gt;
</description></item><item><title>re: Manage database of ASP.NET 2.0 Membership &amp; Role services  in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#8423483</link><pubDate>Fri, 25 Apr 2008 09:24:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8423483</guid><dc:creator>Kangkan</dc:creator><description>&lt;p&gt;How can I add additional attributes to the role in the Role Provider? I need to have some attributes like a location for the role and not for the user.&lt;/p&gt;
</description></item><item><title>re: Manage database of ASP.NET 2.0 Membership &amp; Role services  in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#8518291</link><pubDate>Sun, 18 May 2008 20:21:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8518291</guid><dc:creator>Yahya</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;When I use&lt;/p&gt;
&lt;p&gt;Dim ret As MembershipCreateStatus &lt;/p&gt;
&lt;p&gt;in VB.nat I get the error 'Type 'MembershipCreateStatus' is not defined'. What am I doing wrong?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Yahya&lt;/p&gt;
</description></item><item><title>re: Manage database of ASP.NET 2.0 Membership &amp; Role services  in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#8645713</link><pubDate>Tue, 24 Jun 2008 08:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8645713</guid><dc:creator>gabriel</dc:creator><description>&lt;p&gt;Hi,I found this post extremely helpful.&lt;/p&gt;
&lt;p&gt;I am pushing the boundaries a bit.&lt;/p&gt;
&lt;p&gt;I have a custom membership provider and I would like to call it from vb6 .I have created a an interop dll that calls myCustomMembership but i cannot seem to be able to get the initialize method to get fired.&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
&lt;p&gt;thanksssss&lt;/p&gt;
</description></item><item><title>Manage database of ASP.NET 2.0 Membership &amp; Role services in non-ASP.NET context</title><link>http://blogs.msdn.com/msdnts/archive/2006/12/16/asp-net-2-0-membership-role-management-out-of-asp-net-context.aspx#9168762</link><pubDate>Wed, 03 Dec 2008 10:25:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9168762</guid><dc:creator>Steven Cheng's MSDN Notes</dc:creator><description>&lt;p&gt;Linked to original entry on MSDNTS blog: Manage database of ASP.NET 2.0 Membership &amp;amp;amp; Role services&lt;/p&gt;
</description></item></channel></rss>