﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Programming By A Tool &#187; ASP.Net</title>
	<atom:link href="http://byatool.com/tag/aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://byatool.com</link>
	<description>ANDRE SMASH!!!!</description>
	<lastBuildDate>Tue, 07 Sep 2010 14:23:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ASP.Net MVC: Create a link method&#8230; ie JUST GIVE ME THE STUPID URL</title>
		<link>http://byatool.com/utilities/asp-net-mvc-create-a-link-method-ie-just-give-me-the-stupid-url/</link>
		<comments>http://byatool.com/utilities/asp-net-mvc-create-a-link-method-ie-just-give-me-the-stupid-url/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 20:54:17 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://byatool.com/?p=737</guid>
		<description><![CDATA[One thing that kind of annoys me is the situation where you just want a url, but you don&#8217;t want one of the prepackaged links using: Html.RouteLink Or Html.ActionLink Mostly because you want to be able to create your own html and you only want the created url. Well turns out there&#8217;s a method for [...]]]></description>
			<content:encoded><![CDATA[<p>One thing that kind of annoys me is the situation where you just want a url, but you don&#8217;t want one of the prepackaged links using:</p>
<pre>   Html.RouteLink
Or
   Html.ActionLink</pre>
<p>Mostly because you want to be able to create your own html and you only want the created url. Well turns out there&#8217;s a method for this: The RouteUrl method on the UrlHelper class. Down side is that it&#8217;s not static and takes a few lines to use, so not cool UI design side. Well here&#8217;s a method that uses that method and gives you a method to exact a method of victory. I think that sentence had promise, but fell short of complete failure.</p>
<p>Anyways, here it is&#8230; The &#8220;Just give me the stupid url&#8221; method, CreateUrl for short.</p>
<pre>        public static String CreateUrl
        (
          <span style="color: #008080;">RequestContext</span> context,
          <span style="color: #008080;">RouteCollection</span> routeCollection,
          <span style="color: #008080;">String</span> routeName,
          <span style="color: #008080;">String</span> controller,
          <span style="color: #008080;">String</span> action,
          <span style="color: #008080;">RouteValueDictionary</span> routeValues
        )
        {
            <span style="color: #008000;">//Create the helper
</span>            <span style="color: #008080;">UrlHelper</span> neededHelper = new <span style="color: #008080;">UrlHelper</span>(context, routeCollection);

            <span style="color: #008000;">//get the route to check what it is holding at far
</span>            <span style="color: #008000;">//as defaults go
</span>            <span style="color: #0000ff;">var</span> neededRoute = (<span style="color: #008080;">Route</span>)routeCollection[routeName];

            <span style="color: #008000;">//this might be overkill honestly.  Basically in case the
</span>            <span style="color: #008000;">//Route contains the "controller" key only then add it to the
</span>            <span style="color: #008000;">//values for the route.  Otherwise just ignore.  It's possible
</span>            <span style="color: #008000;">//someone might pass in a controller/action but the route
</span>            <span style="color: #008000;">//doesn't take them. At which point you'll</span>
<span style="color: #008000;">            //be showing the "Aw maaaaan" face.</span>

<span style="color: #0000ff;">            if</span> (!<span style="color: #008080;">String</span>.IsNullOrEmpty(controller) &amp;&amp; neededRoute.Defaults.ContainsKey(<span style="color: #800000;">"controller"</span>))
            {
                routeValues.Add(<span style="color: #800000;">"controller"</span>, controller);
            }

            <span style="color: #0000ff;">if</span> (!<span style="color: #008080;">String</span>.IsNullOrEmpty(action) &amp;&amp; neededRoute.Defaults.ContainsKey(<span style="color: #800000;">"action"</span>))
            {
                routeValues.Add(<span style="color: #800000;">"action"</span>, action);
            }

            <span style="color: #008000;">//And then the call to create the url string.
</span>            <span style="color: #0000ff;">return</span> neededHelper.RouteUrl(routeName, routeValues);
        }</pre>
<p>And in use View side:</p>
<pre>  <span style="color: #0000ff;">&lt;</span><span style="color: #ff0000;">a href=</span><span style="color: #0000ff;">"</span>
  <span style="color: #ff9900;">&lt;</span><span style="color: #ff9900;">%</span>
  CreateUrl
  (
    Html.ViewContext.RequestContext,
    Html.RouteCollection,
    GeneralConstants.RouteDefault,
    <span style="color: #800000;">"SomeController"</span>,
    <span style="color: #800000;">"SomeAction"</span>,
    new <span style="color: #008080;">RouteValueDictionary</span> { { <span style="color: #800000;">"id"</span>, 1 } }
  )
  <span style="color: #ff9900;">%</span><span style="color: #ff9900;">&gt;</span><span style="color: #0000ff;">"</span>
  <span style="color: #0000ff;">&gt;</span>
  Something is linked
  <span style="color: #0000ff;">&lt;/</span><span style="color: #ff0000;">a</span><span style="color: #0000ff;">&gt;</span></pre>
<p>Now mind you I did use a link there so it seems like a silly example. However, you can do many other things now that you just have the url itself.</p>
<div  class="related_post_title">Related Posts</div><ul class="related_post"><li><a href="http://byatool.com/lessons/spark-view-engine-asp-net-mvc-and-you/" title="Spark View Engine, ASP.Net MVC, and You">Spark View Engine, ASP.Net MVC, and You</a></li><li><a href="http://byatool.com/writing/byatool-com-gets-a-shiny-new-tool/" title="ByATool.com gets a shiny new tool!">ByATool.com gets a shiny new tool!</a></li><li><a href="http://byatool.com/lessons/data-annotations-mvc-and-why-you-might-like-them/" title="Data Annotations, MVC, and Why You Might Like Them">Data Annotations, MVC, and Why You Might Like Them</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://byatool.com/utilities/asp-net-mvc-create-a-link-method-ie-just-give-me-the-stupid-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Markup Property Collection for a WebControl</title>
		<link>http://byatool.com/ui/dynamic-markup-property-collection-for-a-webcontrol/</link>
		<comments>http://byatool.com/ui/dynamic-markup-property-collection-for-a-webcontrol/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 21:37:53 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[ScriptControl]]></category>
		<category><![CDATA[WebControl]]></category>

		<guid isPermaLink="false">http://byatool.com/?p=317</guid>
		<description><![CDATA[I wasn&#8217;t exactly sure how to write this title as it&#8217;s not easy to explain in a short sentence, however I can say that I am completely embarrassed by the result and may have to consider hiring a title consultant. However, for now it will have to do. Ok so what is this about? Well [...]]]></description>
			<content:encoded><![CDATA[<p>I wasn&#8217;t exactly sure how to write this title as it&#8217;s not easy to explain in a short sentence, however I can say that I am completely embarrassed by the result and may have to consider hiring a title consultant.  However, for now it will have to do.</p>
<p>Ok so what is this about? Well let&#8217;s say you have the control from the <a href="http://byatool.com/?p=283" target="new">last example</a> and you don&#8217;t want a list of controls in the markup, but maybe you want a list of strings set in the markup. (Say for a list of settings) Or even better, let&#8217;s say you have controls already on the page but you want  our ParentControl (Yes I said &#8220;our&#8221; but no I&#8217;m not proposing&#8230; yet) to do something with those controls. Say we want to have the ParentControl to assign some javascript to certain buttons on the page. Ok yeah, kind of dumb but that&#8217;s the example I made. I supposed you could think of it like this: You want a validation control to validate multiple controls but you want to give it the names of the controls in the markup.  Anyways, let&#8217;s stick with the example I already have.</p>
<p>First off you&#8217;ll need to create a new class, something that you want to hold the information in. (Although truth be told I could do something way easier and just use a list of strings, but this should prove more interesting) Here&#8217;s the one I have:</p>
<pre>  <span style="color: #0000ff;">namespace</span> Test.Frontend.ControlInControl
  {
    <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">class</span> <span style="color: #008080;">ChildControlDefinition</span>
    {
        <span style="color: #0000ff;">public</span> <span style="color: #008080;">String</span> ControlName { <span style="color: #0000ff;">get</span>; <span style="color: #0000ff;">set</span>; }
    }
  }</pre>
<p>Pretty sweet? Eh? Eh? No? Ok. So now we have a class, and that&#8217;s like wow. Now with the same attributes from the old example, build the WebControl:</p>
<pre>    [<span style="color: #008080;">ParseChildren</span>(<span style="color: #0000ff;">true</span>)]
    [<span style="color: #008080;">PersistChildren</span>(<span style="color: #0000ff;">false</span>)]
    <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">partial</span> <span style="color: #0000ff;">class</span> <span style="color: #008080;">ParentControl</span> : <span style="color: #008080;">UserControl</span>
    {
        <span style="color: #0000ff;">public</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">ChildControlDefinition</span>&gt; NamedControls { <span style="color: #0000ff;">get</span>; <span style="color: #0000ff;">set</span>; }
    }</pre>
<p>Holy smokes, that just got way complicated compared to the last example. I added a whole new property NamedControls that is a list of the ChildControlDefinition class we created. Now you might notice that the AddedControls property from the old example isn&#8217;t there anymore. I just removed it to simplify this one.</p>
<p>And then there&#8217;s the markup:</p>
<pre>    &lt;<span style="color: #800000;">asp</span>:<span style="color: #800000;">Button</span> <span style="color: #ff0000;">ID</span><span style="color: #0000ff;">="mainButton"</span> <span style="color: #ff0000;">runat</span><span style="color: #0000ff;">="server"</span> /&gt;
    &lt;<span style="color: #800000;">uc1</span>:<span style="color: #800000;">ParentControl</span> <span style="color: #ff0000;">ID</span><span style="color: #0000ff;">="ParentControl1"</span> <span style="color: #ff0000;">runat</span><span style="color: #0000ff;">="server"</span> &gt;
        &lt;<span style="color: #800000;">NamedControls</span>&gt;
            &lt;<span style="color: #800000;">examples</span>:<span style="color: #800000;">ChildControlDefinition</span> <span style="color: #ff0000;">ControlName</span><span style="color: #0000ff;">="mainButton"</span> /&gt;
        &lt;/<span style="color: #800000;">NamedControls</span>&gt;
    &lt;/<span style="color: #800000;">uc1</span>:<span style="color: #800000;">ParentControl</span>&gt;</pre>
<p>Now you might notice two things here:</p>
<p>1) There is a mark up section named &#8220;NamedControls&#8221; just like the collection. Can you guess why?</p>
<p>2) examples:ChildControlDefinition : This is the class type name and the TagPrefix for where the class is. For this to work, you have to register the assembly the class is in EVEN IF the class is in the web application assembly. So it would look like this:</p>
<pre><span style="color: #000000;">&lt;%</span><span style="color: #0000ff;">@</span> <span style="color: #800000;">Register</span> <span style="color: #ff0000;">Assembly</span><span style="color: #0000ff;">="Test.Frontend"</span> <span style="color: #ff0000;">Namespace</span><span style="color: #0000ff;">="Test.Frontend.ControlInControl"</span> <span style="color: #ff0000;">TagPrefix</span><span style="color: #0000ff;">="examples"</span> %&gt;</pre>
<p>Now what does this do for anyone? Possibly it prevents you from dying a little inside but it also allows you to find those controls within the usercontrol&#8230; Ah buh? Don&#8217;t worry, I&#8217;ll show you!</p>
<pre>    [<span style="color: #008080;">ParseChildren</span>(<span style="color: #0000ff;">true</span>)]
    [<span style="color: #008080;">PersistChildren</span>(<span style="color: #0000ff;">false</span>)]
    <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">partial</span> <span style="color: #0000ff;">class</span> <span style="color: #008080;">ParentControl</span> : <span style="color: #008080;">UserControl</span>
    {
        <span style="color: #0000ff;">protected</span> <span style="color: #0000ff;">override</span> <span style="color: #0000ff;">void</span> OnInit(<span style="color: #008080;">EventArgs</span> e)
        {
            base.OnInit(e);
            NamedControls.ForEach(ConnectButtonToClick);
        }

        <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> ConnectButtonToClick(<span style="color: #008080;">ChildControlDefinition</span> control)
        {
            <span style="color: #008080;">Button</span> foundControl;

            foundControl = Page.FindControl(control.ControlName) as <span style="color: #008080;">Button</span>;

            <span style="color: #0000ff;">if</span> (foundControl != <span style="color: #0000ff;">null</span>)
            {
                foundControl.OnClientClick = <span style="color: #800000;">"alert('clicked'); return false;"</span>;
            }
        }

        <span style="color: #0000ff;">public</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">ChildControlDefinition</span>&gt; NamedControls { <span style="color: #0000ff;">get</span>; <span style="color: #0000ff;">set</span>; }
    }</pre>
<p>See what I did there? SOMETHING COMPLETELY USELESS and yes you too can now have that power. However, there might be something worth taking home from that example. From the list of ChildControlDefinition I was able to get the control name that I wanted to attach the worthless alert script to and attach it. How was that done? Well I just iterated through the ChildControlDefinition list, used the Page.FindControl method to find the control, and then set the OnClientClick method.</p>
<p>Now this example is pretty stupid but I hope you can see the overall value of this. One would be a paging controller that has a list of paging control names that it iterated through and sets various events so they can all work in harmony like one great big continuation of the Hands Across America utopia that just didn&#8217;t seem to make it.</p>
<p>Now to spin it Nintendo User Manual Style:</p>
<p>Think you are bad enough for Dynamic Controls?  Take grab of the power within and dare to conquer!  Take a chance, the world can be your for the taking!  Dynamic is waiting&#8230;</p>
<div  class="related_post_title">Related Posts</div><ul class="related_post"><li><a href="http://byatool.com/ui/add-controls-to-control-webcontrol-or-usercontrol-whatever-the-kids-say/" title="Add Controls to Control in ASP.Net (With Less Pulp)">Add Controls to Control in ASP.Net (With Less Pulp)</a></li><li><a href="http://byatool.com/utilities/asp-net-mvc-create-a-link-method-ie-just-give-me-the-stupid-url/" title="ASP.Net MVC: Create a link method&#8230; ie JUST GIVE ME THE STUPID URL">ASP.Net MVC: Create a link method&#8230; ie JUST GIVE ME THE STUPID URL</a></li><li><a href="http://byatool.com/utilities/paging-and-the-entity-framework-skip-and-take-part-4/" title="Paging and the Entity Framework, Skip, and Take Part 4">Paging and the Entity Framework, Skip, and Take Part 4</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://byatool.com/ui/dynamic-markup-property-collection-for-a-webcontrol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Controls to Control in ASP.Net (With Less Pulp)</title>
		<link>http://byatool.com/ui/add-controls-to-control-webcontrol-or-usercontrol-whatever-the-kids-say/</link>
		<comments>http://byatool.com/ui/add-controls-to-control-webcontrol-or-usercontrol-whatever-the-kids-say/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 22:24:32 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[UserControl]]></category>
		<category><![CDATA[WebControl]]></category>

		<guid isPermaLink="false">http://byatool.com/?p=283</guid>
		<description><![CDATA[So this should be a fairly easy showing and you&#8217;ll be on your way quickly. Hell most likely you won&#8217;t finish this sentence before going somewhere else. BUT for those who brave this post, you will be rewarded&#8230; I hope. So here&#8217;s the problem, you have a UserControl/WebControl/ExtenderControl/ScriptControl/&#8230; (Seriously?) that you want to be able [...]]]></description>
			<content:encoded><![CDATA[<p>So this should be a fairly easy showing and you&#8217;ll be on your way quickly.   Hell most likely you won&#8217;t finish this sentence before going somewhere else.  BUT for those who brave this post, you will be rewarded&#8230; I hope.</p>
<p>So here&#8217;s the problem, you have a UserControl/WebControl/ExtenderControl/ScriptControl/&#8230; (Seriously?) that you want to be able to add controls to in the markup like thus:</p>
<pre><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">SomeControl</span><span style="color: #0000ff;">&gt;</span>
  <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">ControlList</span><span style="color: #0000ff;">&gt;</span>
    <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">asp</span><span style="color: #0000ff;">:</span><span style="color: #800000;">Label</span> <span style="color: #0000ff;">/&gt;</span>
    <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">asp</span><span style="color: #0000ff;">:</span><span style="color: #800000;">Label</span> /<span style="color: #0000ff;">&gt;</span>
  <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">ControlList</span><span style="color: #0000ff;">&gt;</span>
<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">SomeControl</span><span style="color: #0000ff;">&gt;</span></pre>
<p>As you see here, the idea is that SomeControl actually can dynamically house controls based on the markup. Seems like this should be hard, but in reality it&#8217;s pretty simple. First start with creating a user control, which I hope you know how to do. (I&#8217;m calling it ParentControl) Second open up the class file and let&#8217;s add some stuff.</p>
<pre>    [<span style="color: #008080;">ParseChildren</span>(<span style="color: #0000ff;">true</span>)]
    [<span style="color: #008080;">PersistChildren</span>(<span style="color: #0000ff;">false</span>)]
<span style="color: #0000ff;">    public</span> <span style="color: #0000ff;">partial</span> <span style="color: #0000ff;">class</span> <span style="color: #008080;">ParentControl</span> : <span style="color: #008080;">UserControl
</span>    {
        <span style="color: #0000ff;">public</span> <span style="color: #333333;">ParentControl</span>()
        {
            addedControls = <span style="color: #0000ff;">new</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">WebControl</span>&gt;();
        }

        <span style="color: #0000ff;">private</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">WebControl</span>&gt; addedControls;

        <span style="color: #0000ff;">public</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">WebControl</span>&gt; AddedControls
        {
            <span style="color: #0000ff;">get</span>
            {
                <span style="color: #0000ff;">return</span> addedControls;
            }
        }
    }</pre>
<p>And honestly, that&#8217;s the code needed but I&#8217;ll give a literary once over to make sure things are clear.</p>
<p>So first off you have to add a list of controls to the eh&#8230; control and create a property that is used to access it and this can actually be done verbosely:</p>
<pre>        <span style="color: #008000;">//Field
</span>        <span style="color: #0000ff;">private</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">WebControl</span>&gt; addedControls;

        <span style="color: #008000;">//Instantiation on constructor</span>
        <span style="color: #0000ff;">public</span> ParentControl()
        {
            addedControls = <span style="color: #0000ff;">new</span> <span style="color: #008080;">List&lt;WebControl&gt;</span>();
        }

        <span style="color: #008000;">//Property to access</span>
        <span style="color: #0000ff;">public</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">WebControl</span>&gt; AddedControls
        {
            <span style="color: #0000ff;">get</span>
            {
                <span style="color: #0000ff;">return</span> addedControls;
            }
        }</pre>
<p>OR the easy way (Which is not what the original example showed:</p>
<pre>        <span style="color: #0000ff;">public</span> <span style="color: #008080;">List</span>&lt;<span style="color: #008080;">WebControl</span>&gt;AddedControls { <span style="color: #0000ff;">get</span>; <span style="color: #0000ff;">set</span>; }</pre>
<p>As you can see, the 2.0 auto property syntax will actually work for this. So if you like that, you can save yourself some typing.</p>
<p>Ok so now we have a property, and field if you choose, to handle this. Sounds way too easy right? Well the magic is in the attributes:</p>
<pre>    [<span style="color: #008080;">ParseChildren</span>(<span style="color: #0000ff;">true</span>)]
    [<span style="color: #008080;">PersistChildren</span>(<span style="color: #0000ff;">false</span>)]
    <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">partial</span> <span style="color: #0000ff;">class</span> <span style="color: #008080;">ParentControl</span> : <span style="color: #008080;">UserControl</span></pre>
<p>And you&#8217;re all set. Now the markup:</p>
<pre>    <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">userControl</span>:<span style="color: #800000;">ParentControl</span> <span style="color: #ff0000;">ID</span><span style="color: #0000ff;">="ParentControl1"</span> <span style="color: #ff0000;">runat</span><span style="color: #0000ff;">="server"</span> <span style="color: #0000ff;">&gt;</span>
        <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">AddedControls</span>&gt;
            <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">asp</span>:<span style="color: #800000;">Label</span> <span style="color: #ff0000;">ID</span><span style="color: #0000ff;">="labelHi"</span> <span style="color: #ff0000;">runat</span><span style="color: #0000ff;">="server"</span> <span style="color: #0000ff;">/&gt;</span>
        <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">AddedControls</span><span style="color: #0000ff;">&gt;</span>
    <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">userControl</span>:<span style="color: #800000;">ParentControl</span><span style="color: #0000ff;">&gt;</span></pre>
<p>Still waiting for this to get complicated? Well you&#8217;re going to waiting for a long time because that&#8217;s it. When page load comes around will now have a list with the label in it. Pretty nice huh?</p>
<div  class="related_post_title">Related Posts</div><ul class="related_post"><li><a href="http://byatool.com/ui/dynamic-markup-property-collection-for-a-webcontrol/" title="Dynamic Markup Property Collection for a WebControl">Dynamic Markup Property Collection for a WebControl</a></li><li><a href="http://byatool.com/utilities/asp-net-mvc-create-a-link-method-ie-just-give-me-the-stupid-url/" title="ASP.Net MVC: Create a link method&#8230; ie JUST GIVE ME THE STUPID URL">ASP.Net MVC: Create a link method&#8230; ie JUST GIVE ME THE STUPID URL</a></li><li><a href="http://byatool.com/utilities/paging-and-the-entity-framework-skip-and-take-part-4/" title="Paging and the Entity Framework, Skip, and Take Part 4">Paging and the Entity Framework, Skip, and Take Part 4</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://byatool.com/ui/add-controls-to-control-webcontrol-or-usercontrol-whatever-the-kids-say/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
