<?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>Suddenelfilio.net &#187; Asp.net</title>
	<atom:link href="http://www.suddenelfilio.net/category/programming/asp-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.suddenelfilio.net</link>
	<description>Passionate about software development</description>
	<lastBuildDate>Mon, 19 Dec 2011 12:07:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>IIS 7.x and HttpResponse.Headers</title>
		<link>http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/</link>
		<comments>http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 15:40:28 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[HTTP Handlers]]></category>
		<category><![CDATA[HTTP Headers]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/</guid>
		<description><![CDATA[Today I was debugging some application I wrote that was written with an application pool’s mode set to Integrated mode in mind. One of my colleagues told me I needed to test it running in an application pool with its mode set to Classic. And guess what? Boom… it blew up in my face! After [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was debugging some application I wrote that was written with an application pool’s mode set to <strong>Integrated </strong>mode in mind. One of my colleagues told me I needed to test it running in an application pool with its mode set to <strong>Classic. </strong></p>
<p>And guess what? Boom… it blew up in my face! After cursing around a bit I discovered in my log files the following message:</p>
<blockquote><p>ERROR    An Exception was thrown:System.PlatformNotSupportedException: This operation requires IIS integrated pipeline mode.<br />
at System.Web.HttpResponse.get_Headers()</p></blockquote>
<p>The defect piece of code was this:</p>
<pre class="brush: csharp; title: ; toolbar: true; wrap-lines: true; notranslate">
HttpContext.Current.Response.Headers.Add(&quot;Some-Header&quot;,&quot;Some-Value&quot;);
</pre>
<p>Apparently to do that you need the IIS integrated pipeline mode. Well if you really need to run your app pool in Classic mode just replace your code with the following and all is well:</p>
<pre class="brush: csharp; title: ; toolbar: true; wrap-lines: true; notranslate">
HttpContext.Current.Response.AppendHeader(&quot;Some-Header&quot;,&quot;Some-Value&quot;);
</pre>
<p>I know it’s kind of silly from Microsoft to not make this both ways compatible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Connect to Facebook using ASP.NET, Facebook Graph API &amp; Hammock</title>
		<link>http://www.suddenelfilio.net/2010/09/08/connect-to-facebook-using-asp-net-facebook-graph-api-hammock/</link>
		<comments>http://www.suddenelfilio.net/2010/09/08/connect-to-facebook-using-asp-net-facebook-graph-api-hammock/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 10:53:45 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Codeplex]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Graph API]]></category>
		<category><![CDATA[hammock]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=525</guid>
		<description><![CDATA[UPDATE: Hammock moved to github https://github.com/danielcrenna/hammock A while ago I wrote a post on how to perform oAuth authentication against the LinkedIn API using Hammock. Today I want to show you how to use Hammock with the Facebook Graph API. The Graph API is a new way a developer can read and write data to [...]]]></description>
			<content:encoded><![CDATA[<h2><b>UPDATE: Hammock moved to github https://github.com/danielcrenna/hammock</b></h2>
<p><img class="alignright size-full wp-image-433" title="hammock" src="http://www.suddenelfilio.net/wp-content/uploads/2010/08/hammock-logo.png" alt="" width="94" height="100" />A while ago I wrote a post on how to perform <a href="http://www.suddenelfilio.net/2010/08/24/linkedin-oauth-using-hammock-in-csharp-asp-net/" target="_blank">oAuth authentication against the LinkedIn API using Hammock</a>. Today I want to show you how to use <a href="http://hammock.codeplex.com" target="_blank">Hammock </a>with the <a href="http://developers.facebook.com/docs/api" target="_blank">Facebook Graph API</a>. The Graph API is a new way a developer can read and write data to Facebook. Facebook uses oAuth 2.0 which is a simpler version of the oAuth authentication I used in my previous article with LinkedIn. It uses SSL instead of relying on the URL signature schemes and token exchanges you see in oAuth 1.x</p>
<p>There are 3 steps:</p>
<ol>
<li>Redirect the visitor to the authorization page over at Facebook.com</li>
<li>Handle the callback from Facebook.com</li>
<li>Get an access_token from Facebook.com using the code parameter returned by Facebook.com in step 2</li>
</ol>
<p>For more information about the exact details on authorization in the Graph API go to: <a href="http://developers.facebook.com/docs/api">http://developers.facebook.com/docs/api</a></p>
<p>So let&#8217;s begin. I created a Web application in Visual Studio .Net 2010 that looks like this:</p>
<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2010/09/begin.png"><img class="aligncenter size-medium wp-image-527" title="Sample start page" src="http://www.suddenelfilio.net/wp-content/uploads/2010/09/begin-300x176.png" alt="" width="300" height="176" /></a></p>
<p>As you can see there is not much on the page except for a button, an empty image and some text with &#8220;<em>Unknown</em>&#8221; values. The goal is that when your visitor clicks the &#8220;<em>Connect to Facebook</em>&#8221; button he/she gets redirect to Facebook.com to authorize your application and then you can get the profile picture, name and the visitor&#8217;s about text he/she filled in on Facebook.</p>
<p>When the visitor clicks the &#8220;<em>Connect to Facebook</em>&#8221; the following code is executed:</p>
<pre class="brush: csharp; title: ; wrap-lines: false; notranslate">

   protected void Button1_Click(object sender, EventArgs e)
   {
            string callbackUrl = &quot;http://localhost/FacebookConnectWithHammock/&quot;;
            //Request offline access and publish to the users stream access.
            Response.Redirect(string.Format(&quot;https://graph.facebook.com/oauth/authorize?client_id={0}&amp;redirect_uri={1}&amp;scope=offline_access,publish_stream&quot;, ConfigurationManager.AppSettings[&quot;FacebookClientId&quot;], callbackUrl));
   }
</pre>
<p>What this does is it will redirect the visitor to facebook to the authorization page. This specific authorization request asks foor &#8220;<em>offline_access</em>&#8221; and &#8220;<em>publish_stream</em>&#8221; rights. This means that the application can access your Facebook account while you are offline and it can also publish updates to your Facebook account. Other parameters are the &#8220;<em>client_id</em>&#8221; which you need to set to your application&#8217;s client id that was <a href="http://www.facebook.com/developers/apps.php#!/developers/" target="_blank">assigned to your application when you created it</a> and the &#8220;<em>redirect_uri</em>&#8221; which tells Facebook where to redirect the visitor after he/she granted your application access. When this is the first time the visitor is authorizing your application he/she will see the following authorization page:</p>
<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2010/09/request.png"><img class="aligncenter size-medium wp-image-531" title="Facebook authorize application" src="http://www.suddenelfilio.net/wp-content/uploads/2010/09/request-300x144.png" alt="" width="300" height="144" /></a></p>
<p>When the visitors clicks on the &#8220;<em>Allow</em>&#8221; button Facebook will redirect the visitor back to the &#8220;<em>redirect_uri</em>&#8221; parameter. Then arriving on the web server we will receive a code parameter that we need to use to get the access_token. Here is how the callback code looks:</p>
<p>First in the Page_Load we check if the current request is a callback from Facebook by verifying if the <em>Request["code"] </em>querystring parameter is not null or empty and when it is not we call the callback handling code:</p>
<pre class="brush: csharp; title: ; wrap-lines: false; notranslate">

 protected void Page_Load(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(Request[&quot;code&quot;]) &amp;&amp; !Page.IsPostBack)
     {
          HandleFacebookCallback();
     }
 }
</pre>
<p>The HandleFacebookCallback method will use the &#8220;<em>code</em>&#8221; parameter to get an access token and then call the DisplayUserInformation method passing the received token. The DisplayUserInformation will make a request to the Graph API requesting information about the visitor that just authorized the application. It will show the profile picture, name of the visitor and the about text that is filled in on his/hers Facebook profile.</p>
<pre class="brush: csharp; title: ; wrap-lines: false; notranslate">

        private void HandleFacebookCallback()
        {
            string CallbackUrl = &quot;http://localhost/FacebookConnectWithHammock/&quot;;
            var client = new RestClient { Authority = &quot;https://graph.facebook.com/oauth/&quot; };
            var request = new RestRequest { Path = &quot;access_token&quot; };

            request.AddParameter(&quot;client_id&quot;, ConfigurationManager.AppSettings[&quot;FacebookClientId&quot;]);
            request.AddParameter(&quot;redirect_uri&quot;, CallbackUrl);
            request.AddParameter(&quot;client_secret&quot;, ConfigurationManager.AppSettings[&quot;FacebookApplicationSecret&quot;]);
            request.AddParameter(&quot;code&quot;, Request[&quot;code&quot;]);

            RestResponse response = client.Request(request);
            // A little helper to parse the querystrings.
            StringDictionary result = ParseQueryString(response.Content);
            string aToken = result[&quot;access_token&quot;];

            DisplayUserInformation(aToken);
        }

        private void DisplayUserInformation(string sToken)
        {
            var client = new RestClient { Authority = &quot;https://graph.facebook.com/&quot; };
            var request = new RestRequest { Path = &quot;me&quot; };
            request.AddParameter(&quot;access_token&quot;, sToken);
            RestResponse response = client.Request(request);

           JavaScriptSerializer ser = new JavaScriptSerializer();
            var parsedResult = ser.Deserialize&lt;FacebookUser&gt;(response.Content);

            ProfilePic.ImageUrl = string.Format(&quot;http://graph.facebook.com/{0}/picture?type=large&quot;,parsedResult.id);
            NameLabel.Text = parsedResult.name;
            AboutLabel.Text = parsedResult.about;
        }
</pre>
<p>When all goes well it should a little like the picture below.</p>
<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2010/09/result.png"><img class="aligncenter size-medium wp-image-537" title="Result after authorization" src="http://www.suddenelfilio.net/wp-content/uploads/2010/09/result-300x176.png" alt="" width="300" height="176" /></a></p>
<p>Okay the formatting may not be optimal, but you get the point on how you can use <a href="http://hammock.codeplex.com" target="_blank">Hammock</a> to interact with the Facebook Graph API.</p>
<p>You can download the sample code here: <a  class='wpdm-popup' rel='colorbox'  title='FacebookConnectWithHammock.rar' href='http://www.suddenelfilio.net/?download=5' style="background:url('http://www.suddenelfilio.net/wp-content/plugins/download-manager/icon/download.png') no-repeat;padding:3px 12px 12px 28px;font:bold 10pt verdana;">Download</a><br><small style='margin-left:30px;'>Downloaded 1751 times</small></p>
<p><strong>NOTE:</strong> if you want to use the sample you will need to create an application first to get your application client id and secret. For more on this go to: <a href="http://www.facebook.com/developers/">http://www.facebook.com/developers/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/09/08/connect-to-facebook-using-asp-net-facebook-graph-api-hammock/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Increase Kooboo performance in IIS 7</title>
		<link>http://www.suddenelfilio.net/2010/08/10/increase-kooboo-performance-in-iis-7/</link>
		<comments>http://www.suddenelfilio.net/2010/08/10/increase-kooboo-performance-in-iis-7/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 16:00:10 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Visual Studio .Net]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Kooboo]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[visual studio .net 2010]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=408</guid>
		<description><![CDATA[Lately I&#8217;ve been working with the Kooboo CMS which is built using ASP.NET MVC. I really like the speed Kooboo allows you to build a website with dynamic content. All that fancy footwork comes with a downside. The first time you call a Kooboo application it is really and do mean REALLY slow to start. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2010/08/iis_logo.png"><img class="alignleft size-full wp-image-409" style="margin-left: 15px; margin-right: 15px;" title="iis_logo" src="http://www.suddenelfilio.net/wp-content/uploads/2010/08/iis_logo.png" alt="" width="123" height="63" /></a>Lately I&#8217;ve been working with the <a href="http://www.kooboo.com">Kooboo CMS</a> which is built using ASP.NET MVC. I really like the speed Kooboo allows you to build a website with dynamic content. All that fancy footwork comes with a downside. The first time you call a Kooboo application it is really and do mean REALLY slow to start. Cause? Well the Asp.net MVC framework, Microsoft Entity framework and most of all I think the extensive caching mechanism.</p>
<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2010/08/kooboo_logo.png"><img class="alignright size-full wp-image-411" style="margin-left: 15px; margin-right: 15px;" title="kooboo_logo" src="http://www.suddenelfilio.net/wp-content/uploads/2010/08/kooboo_logo.png" alt="" width="127" height="24" /></a>I&#8217;ve experienced waiting times up till 30 seconds for the first page to appear, now this is not really acceptable for any site I admit. I remembered that there is IIS 7 extension called <a href="http://www.iis.net/download/applicationwarmup">application warm-up</a> tool that you can configure to call a certain url when the worker process recycles. This will trigger the site to startup again and load up all the caching and stuff. I&#8217;m not saying that the next call will be blazingly fast but at least your request will be served much faster.</p>
<p>I&#8217;m currently developing several sites using the Kooboo platform and I&#8217;m pleasently surprised of the possibilities of the platform. Thumbs up for the creators!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/08/10/increase-kooboo-performance-in-iis-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Tag Rest API &amp; Silverlight</title>
		<link>http://www.suddenelfilio.net/2010/03/11/microsoft-tag-rest-api-silverlight/</link>
		<comments>http://www.suddenelfilio.net/2010/03/11/microsoft-tag-rest-api-silverlight/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 21:56:13 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[MSTagLib]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Visual Studio .Net]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=251</guid>
		<description><![CDATA[Recently I was contacted by a developer that was working with my MS Tag REST service. He was was calling the REST API from within silverlight. I helped him out with some questions and in return I got a sample project that I can distribute as reference sample. The sample will allow you to create [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tag.ws.suddenelfilio.net/demo/silverlight"><img class="alignright size-medium wp-image-253" title="silverlight sample" src="http://www.suddenelfilio.net/wp-content/uploads/2010/03/silverlight-sample-300x288.png" alt="" width="240" height="230" /></a>Recently I was contacted by a developer that was working with my <a href="http://tag.ws.suddenelfilio.net/" target="_blank">MS Tag REST</a> service. He was was calling the REST API from within silverlight. I helped him out with some questions and in return I got a sample project that I can distribute as reference sample. The sample will allow you to create a vcard Tag from within a silverlight application and then display the generated tag.</p>
<p>Live demo : <a href="http://tag.ws.suddenelfilio.net/demo/silverlight/Default.aspx" target="_blank">http://tag.ws.suddenelfilio.net/demo/silverlight/Default.aspx </a></p>
<p>Source Code: <a  title='Microsoft Tag REST API & Silverlight Sample' href='http://www.suddenelfilio.net/?wpdmact=process&did=My5ob3RsaW5r' style="background:url('http://www.suddenelfilio.net/wp-content/plugins/download-manager/icon/download.png') no-repeat;padding:3px 12px 12px 28px;font:bold 10pt verdana;">Download</a><br><small style='margin-left:30px;'>Downloaded 152 times</small></p>
<p><strong>I would foremost like to thank Brian King for his effort in creating this sample for everyone that is interested in it. If you like it, please leave a comment to thank him!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/03/11/microsoft-tag-rest-api-silverlight/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dynamic Data Controls (ASP.NET Futures CTP)</title>
		<link>http://www.suddenelfilio.net/2007/06/06/dynamic-data-controls-aspnet-futures-ctp/</link>
		<comments>http://www.suddenelfilio.net/2007/06/06/dynamic-data-controls-aspnet-futures-ctp/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 15:00:19 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Visual Studio .Net 2005]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/06/06/dynamic-data-controls-aspnet-futures-ctp/</guid>
		<description><![CDATA[If you want a small introduction for the dynamic data controls that exist in the ASP.NET Futures CTP. You can watch the webcast below:]]></description>
			<content:encoded><![CDATA[<p>If you want a small introduction for the dynamic data controls that exist in the ASP.NET Futures CTP. You can watch the webcast below:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2007/06/06/dynamic-data-controls-aspnet-futures-ctp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio Orcas Beta available !!!</title>
		<link>http://www.suddenelfilio.net/2007/04/20/visual-studio-orcas-beta-available/</link>
		<comments>http://www.suddenelfilio.net/2007/04/20/visual-studio-orcas-beta-available/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 08:16:47 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/04/20/visual-studio-orcas-beta-available/</guid>
		<description><![CDATA[I saw the notice on Informationweek that Microsoft released a beta of the VS.net Orcas. Find out more here.]]></description>
			<content:encoded><![CDATA[<p><a href="http://suddenelfilio.net/wp/wp-content/uploads/2007/04/WindowsLiveWriter/VisualStudioOrcasBetaavailable_9154/aa700830.orcas_hero%5B2%5D.jpg"><img width="240" height="55" border="0" align="right" style="border:0 none;margin:0 0 0 15px;" src="http://suddenelfilio.net/wp/wp-content/uploads/2007/04/WindowsLiveWriter/VisualStudioOrcasBetaavailable_9154/aa700830.orcas_hero_thumb.jpg" /></a> I saw the notice on <a target="_blank" href="http://suddenelfilio.net/redirects/redirect.aspx?u=http://www.informationweek.com">Informationweek</a> that Microsoft released a beta of the VS.net Orcas.</p>
<p>Find out more <a target="_blank" href="http://suddenelfilio.net/redirects/redirect.aspx?u=http://www.informationweek.com/shared/printableArticle.jhtml?articleID=199103104">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2007/04/20/visual-studio-orcas-beta-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Print from ASP.Net on a network server</title>
		<link>http://www.suddenelfilio.net/2007/02/15/how-to-print-from-aspnet-on-a-network-server/</link>
		<comments>http://www.suddenelfilio.net/2007/02/15/how-to-print-from-aspnet-on-a-network-server/#comments</comments>
		<pubDate>Fri, 16 Feb 2007 07:14:00 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/02/15/how-to-print-from-aspnet-on-a-network-server/</guid>
		<description><![CDATA[Yesterday we had a small problem with a project of ours. We have a reporting system that server side will process the report and if configured it will print this on a printer somewhere in the network. When we first tried this every time we printed to a network attached printer we got an error [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday we had a small problem with a project of ours. We have a reporting system that server side will process the report and if configured it will print this on a printer somewhere in the network.</p>
<p>When we first tried this every time we printed to a network attached printer we got an error saying that we did not have access to this printer. This behavior is actually normal if you think about it. The server side code runs through an ASP.NET Web Service which in our case runs under it&#8217;s native aspnet account. Since this is a local account it does not have access to the network printer.</p>
<p>A solution could be impersonation or just simply make sure the web service runs as a dedicated domain account that has access. This however was not an option for us so we had to look for something else.</p>
<p>The solution I came up with was creating a local printer, but instead of letting it print to a local port like LPT1 I created a new standard TCP/IP port. This allows you to enter an IP and port for the networked printer. The advantage is that this printer is a local printer which requires no authentication at all, so asp.net can use it to print without knowing that it is actually being sent to a network printer.</p>
<p><img src="http://suddenelfilio.net/site/aggbug.aspx?PostID=71" alt="" width="1" height="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2007/02/15/how-to-print-from-aspnet-on-a-network-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

