<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Microsoft ASP.NET 2.0 Member/Role Management with IISPart 2: Implementation</title>
	<atom:link href="http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/feed/" rel="self" type="application/rss+xml" />
	<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-aspnet-20-memberrole-management-with-iis</link>
	<description>Microsoft Focused, JavaScript,HTML5 (ExtJS, SenchaTouch &#38; Windows 8 Metro)</description>
	<lastBuildDate>Tue, 15 May 2012 21:53:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Matt Curland</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-35081</link>
		<dc:creator>Matt Curland</dc:creator>
		<pubDate>Fri, 10 Feb 2012 17:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-35081</guid>
		<description>Thanks, Peter. Saved me lots of time. The only issue I had is that I allowed user names with spaces, and the role management fails badly in this case because you&#039;re splitting the button text on spaces.

I modified Membership.aspx.cs to use single-smart-quote characters not generally included in role or user names:

// Modified in ShowInRoleStatus
result = &quot;Unassign ‘&quot; + userName + &quot;’ From Role ‘&quot; + roleName + &quot;’&quot;;
result = &quot;Assign ‘&quot; + userName + &quot;’ To Role ‘&quot; + roleName + &quot;’&quot;;

// Modified in ToggleInRole_Click
char[] seps = new char[] { &#039;‘&#039;, &#039;’&#039; };
string[] buttonTextArray = buttonText.Split(seps);
string roleName = buttonTextArray[3];</description>
		<content:encoded><![CDATA[<p>Thanks, Peter. Saved me lots of time. The only issue I had is that I allowed user names with spaces, and the role management fails badly in this case because you&#8217;re splitting the button text on spaces.</p>
<p>I modified Membership.aspx.cs to use single-smart-quote characters not generally included in role or user names:</p>
<p>// Modified in ShowInRoleStatus<br />
result = &#8220;Unassign ‘&#8221; + userName + &#8220;’ From Role ‘&#8221; + roleName + &#8220;’&#8221;;<br />
result = &#8220;Assign ‘&#8221; + userName + &#8220;’ To Role ‘&#8221; + roleName + &#8220;’&#8221;;</p>
<p>// Modified in ToggleInRole_Click<br />
char[] seps = new char[] { &#8216;‘&#8217;, &#8216;’&#8217; };<br />
string[] buttonTextArray = buttonText.Split(seps);<br />
string roleName = buttonTextArray[3];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Baba</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-33511</link>
		<dc:creator>Baba</dc:creator>
		<pubDate>Tue, 20 Dec 2011 21:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-33511</guid>
		<description>Excellent Work.. Tons of time saved. Thanks for sharing</description>
		<content:encoded><![CDATA[<p>Excellent Work.. Tons of time saved. Thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Powerlifting</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-30334</link>
		<dc:creator>Powerlifting</dc:creator>
		<pubDate>Sun, 07 Aug 2011 16:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-30334</guid>
		<description>Like someone above said, it is difficult to implement this kind of system, especially if the work is done by a begginer (like I am).
Without any knowledge, even if a copy paste tutorial would seem dificult</description>
		<content:encoded><![CDATA[<p>Like someone above said, it is difficult to implement this kind of system, especially if the work is done by a begginer (like I am).<br />
Without any knowledge, even if a copy paste tutorial would seem dificult</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Idol</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-30004</link>
		<dc:creator>Idol</dc:creator>
		<pubDate>Sun, 22 May 2011 08:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-30004</guid>
		<description>Thanks Pete, this helped a lot with a project I&#039;m working on!</description>
		<content:encoded><![CDATA[<p>Thanks Pete, this helped a lot with a project I&#8217;m working on!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AnArmenianGuy</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29982</link>
		<dc:creator>AnArmenianGuy</dc:creator>
		<pubDate>Thu, 19 May 2011 15:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29982</guid>
		<description>Thanks Peter! It&#039;s already the 5.5th year now and your article still saves OUR vital hours all around the world!!! :)</description>
		<content:encoded><![CDATA[<p>Thanks Peter! It&#8217;s already the 5.5th year now and your article still saves OUR vital hours all around the world!!! <img src='http://PetersBlogCDN.s3.amazonaws.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: smoke</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29929</link>
		<dc:creator>smoke</dc:creator>
		<pubDate>Thu, 12 May 2011 15:35:41 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29929</guid>
		<description>Great stuff, any ideas where I can get a guideon how to utilize the WebAdmin pages within an asp.net app outside of the dev environment (for example, adding them to the app and then establishing the necessary links afterwards).

thanks, troy.</description>
		<content:encoded><![CDATA[<p>Great stuff, any ideas where I can get a guideon how to utilize the WebAdmin pages within an asp.net app outside of the dev environment (for example, adding them to the app and then establishing the necessary links afterwards).</p>
<p>thanks, troy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: desene</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29901</link>
		<dc:creator>desene</dc:creator>
		<pubDate>Mon, 09 May 2011 12:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29901</guid>
		<description>The implementation of role management with members in ASP.net 2.0 seems to be difficult for a beginner. However, the most important thing is to have a good knowledge of the web and to search for info. This article helps me to perform an almost similar task at my job. Thank you !</description>
		<content:encoded><![CDATA[<p>The implementation of role management with members in ASP.net 2.0 seems to be difficult for a beginner. However, the most important thing is to have a good knowledge of the web and to search for info. This article helps me to perform an almost similar task at my job. Thank you !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29841</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Wed, 27 Apr 2011 19:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29841</guid>
		<description>Have been postponing this for a long time but always have had a need in all my applications.

Finally a good easily solution in which you&#039;ve done all the heavy lifting.

Works perfectly in VS2008 with SQL2005.

Thanks</description>
		<content:encoded><![CDATA[<p>Have been postponing this for a long time but always have had a need in all my applications.</p>
<p>Finally a good easily solution in which you&#8217;ve done all the heavy lifting.</p>
<p>Works perfectly in VS2008 with SQL2005.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hans H</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29696</link>
		<dc:creator>Hans H</dc:creator>
		<pubDate>Thu, 31 Mar 2011 12:28:58 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29696</guid>
		<description>Works perfect! Have beed looking for these for many weeks! Regards Hans</description>
		<content:encoded><![CDATA[<p>Works perfect! Have beed looking for these for many weeks! Regards Hans</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Developer</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29243</link>
		<dc:creator>Web Developer</dc:creator>
		<pubDate>Sun, 23 Jan 2011 23:58:08 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29243</guid>
		<description>Classic ASP was so much simpler to manage in IIS6.</description>
		<content:encoded><![CDATA[<p>Classic ASP was so much simpler to manage in IIS6.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vacanta</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29199</link>
		<dc:creator>Vacanta</dc:creator>
		<pubDate>Mon, 17 Jan 2011 14:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29199</guid>
		<description>The implementation of role management with members in ASP.net 2.0 seems to be difficult for a beginner. However, the most important thing is to have a good knowledge of the web and to search for info. This article helps me to perform an almost similar task at my job. Thank you !</description>
		<content:encoded><![CDATA[<p>The implementation of role management with members in ASP.net 2.0 seems to be difficult for a beginner. However, the most important thing is to have a good knowledge of the web and to search for info. This article helps me to perform an almost similar task at my job. Thank you !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie @ Georgia 4G Wireless</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29187</link>
		<dc:creator>Charlie @ Georgia 4G Wireless</dc:creator>
		<pubDate>Sun, 16 Jan 2011 01:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29187</guid>
		<description>Hello there, just browsing for information for my Georgia 4g site.  Truly more information that you can imagine on the web.  Looking for something else, but very nice site.  Have a good day.</description>
		<content:encoded><![CDATA[<p>Hello there, just browsing for information for my Georgia 4g site.  Truly more information that you can imagine on the web.  Looking for something else, but very nice site.  Have a good day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Byrd0</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-29157</link>
		<dc:creator>Byrd0</dc:creator>
		<pubDate>Thu, 06 Jan 2011 21:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-29157</guid>
		<description>Fantastic!
Thanks a bunch for the write-up!</description>
		<content:encoded><![CDATA[<p>Fantastic!<br />
Thanks a bunch for the write-up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keely Yell</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-28695</link>
		<dc:creator>Keely Yell</dc:creator>
		<pubDate>Sat, 11 Dec 2010 12:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-28695</guid>
		<description>This information and facts actually helped me, I am sharing with a couple of friends. I will probably be checking back regularly to look for updates.</description>
		<content:encoded><![CDATA[<p>This information and facts actually helped me, I am sharing with a couple of friends. I will probably be checking back regularly to look for updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anglea Dzurnak</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-28689</link>
		<dc:creator>Anglea Dzurnak</dc:creator>
		<pubDate>Fri, 10 Dec 2010 17:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-28689</guid>
		<description>Intimately, the post is really the greatest subject on this associated problem. I agree along with your conclusions and will thirstily appear forward to your approaching updates. Just saying thanks is not going to just be sufficient, for the extraordinary lucidity within your writing. I will at as soon as grab your rss feed to stay informed of any updates.</description>
		<content:encoded><![CDATA[<p>Intimately, the post is really the greatest subject on this associated problem. I agree along with your conclusions and will thirstily appear forward to your approaching updates. Just saying thanks is not going to just be sufficient, for the extraordinary lucidity within your writing. I will at as soon as grab your rss feed to stay informed of any updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Club Penguin</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-26242</link>
		<dc:creator>Club Penguin</dc:creator>
		<pubDate>Thu, 25 Feb 2010 06:27:26 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-26242</guid>
		<description>You need to update more you do a good job</description>
		<content:encoded><![CDATA[<p>You need to update more you do a good job</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lana</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-26031</link>
		<dc:creator>Lana</dc:creator>
		<pubDate>Mon, 11 Jan 2010 17:55:11 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-26031</guid>
		<description>Thank you so much for this code! It was unbelievably easy to implement and would have taken weeks for me to get this working on my remote site on my own!

Much Thanks!</description>
		<content:encoded><![CDATA[<p>Thank you so much for this code! It was unbelievably easy to implement and would have taken weeks for me to get this working on my remote site on my own!</p>
<p>Much Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Smita</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-25456</link>
		<dc:creator>Smita</dc:creator>
		<pubDate>Tue, 13 Oct 2009 05:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-25456</guid>
		<description>In my page Object Datasource return Dataset.So how to sorting in that method.Which doesn&#039;t return Collection.</description>
		<content:encoded><![CDATA[<p>In my page Object Datasource return Dataset.So how to sorting in that method.Which doesn&#8217;t return Collection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajnar</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-24943</link>
		<dc:creator>ajnar</dc:creator>
		<pubDate>Mon, 15 Jun 2009 10:02:40 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-24943</guid>
		<description>great piece of code, saves a lod of ground work.

was wondering if there was a quick way to filter the output of the grids using a related table to the users.
eg i have a profile table related by userid, i would like to filter the users by country which is a field on the profile table.

How is this easily plugged in?
Tx</description>
		<content:encoded><![CDATA[<p>great piece of code, saves a lod of ground work.</p>
<p>was wondering if there was a quick way to filter the output of the grids using a related table to the users.<br />
eg i have a profile table related by userid, i would like to filter the users by country which is a field on the profile table.</p>
<p>How is this easily plugged in?<br />
Tx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Life in the UK Test</title>
		<link>http://peterkellner.net/2006/01/09/microsoft-aspnet-20-memberrole-management-with-iis/#comment-16237</link>
		<dc:creator>Life in the UK Test</dc:creator>
		<pubDate>Wed, 07 Jan 2009 14:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/?p=24#comment-16237</guid>
		<description>Thanks for sharing this important article...

Thanks,
http://www.prepareuktest.co.uk</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this important article&#8230;</p>
<p>Thanks,<br />
<a href="http://www.prepareuktest.co.uk">http://www.prepareuktest.co.uk</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 66/68 queries in 0.015 seconds using disk: basic
Content Delivery Network via Amazon Web Services: S3: PetersBlogCDN.s3.amazonaws.com

Served from: peterkellner.net @ 2012-05-17 05:40:28 -->
