<?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>Tech Blog &#187; .net</title>
	<atom:link href="http://informationideas.com/news/category/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://informationideas.com/news</link>
	<description>Using technology to help your business</description>
	<lastBuildDate>Tue, 06 Dec 2011 06:39:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Scaling down from MS to open source</title>
		<link>http://informationideas.com/news/2011/03/03/scaling-down-from-ms-to-open-source/</link>
		<comments>http://informationideas.com/news/2011/03/03/scaling-down-from-ms-to-open-source/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 00:37:31 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MSSql]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[our development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=167</guid>
		<description><![CDATA[We just moved a service that was running on the Microsoft stack (Windows Server 2008, .NET, MSSql Server, IIS) to an open source stack (Ubuntu Server, php, Codeigniter framework, apache2, postgres). We now run the service on a cloud server with dual cpu and 256MB ram (Yes, that's megabytes). The old server ran on dual [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>We just moved a service that was running on the Microsoft stack (Windows Server 2008, .NET, MSSql Server, IIS) to an open source stack (Ubuntu Server, php, Codeigniter framework, apache2, postgres). </p>
<p>We now run the service on a cloud server with dual cpu and 256MB ram (Yes, that's megabytes).</p>
<p>The old server ran on dual core with 2GB of ram.</p>
<div class="shr-publisher-167"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2011/03/03/scaling-down-from-ms-to-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asp.net formview problem updating data</title>
		<link>http://informationideas.com/news/2009/01/22/aspnet-formview-problem-updating-data/</link>
		<comments>http://informationideas.com/news/2009/01/22/aspnet-formview-problem-updating-data/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 06:47:09 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[formview]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=73</guid>
		<description><![CDATA[Very strange behavior with formviews on asp.net.Â  For some reason, if I declare the SqlDataSource on the page source but then do the binding of the SqlDataSource to the formview in code behind, no error are shown but the data does NOT get updated on edit. So instead of doing this in code behind summary.DataSourceID [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Very strange behavior with formviews on asp.net.Â  For some reason, if I declare the SqlDataSource on the page source but then do the binding of the SqlDataSource to the formview in code behind, no error are shown but the data does NOT get updated on edit.</p>
<p>So instead of doing this in code behind<br />
<code><br />
summary.DataSourceID = "summaryDS";<br />
summary.DataBind();<br />
</code></p>
<p>I need to do this on the page<br />
<code><br />
&lt;asp :FormView ID="summary"<br />
runat="server"<br />
DataSourceID="summaryDS"&gt;<br />
</code></p>
<p><a href="http://informationideas.com/news/2008/07/29/net-formview-edit-mode-problem/">A previous problem I encountered with formview</a></p>
<div class="shr-publisher-73"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/01/22/aspnet-formview-problem-updating-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET formview edit mode problem</title>
		<link>http://informationideas.com/news/2008/07/29/net-formview-edit-mode-problem/</link>
		<comments>http://informationideas.com/news/2008/07/29/net-formview-edit-mode-problem/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 18:45:24 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=62</guid>
		<description><![CDATA[I encountered problem with the formview not switching to edit mode using the standard commandname="Edit" for a linkbutton.Â  It turns out the problem was with the way I bind the data source to the formview through code behind.Â  I changed that to defining the formview tag with the attribute of datasource while defining the data [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>I encountered problem with the formview not switching to edit mode using the standard commandname="Edit" for a linkbutton.Â  It turns out the problem was with the way I bind the data source to the formview through code behind.Â  I changed that to defining the formview tag with the attribute of datasource while defining the data source on the page code and everything worked just fine.Â  Go figure.</p>
<div class="shr-publisher-62"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2008/07/29/net-formview-edit-mode-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET Error &#8220;The password provided is invalid. Please enter a valid password value.&#8221;</title>
		<link>http://informationideas.com/news/2008/02/04/net-error-the-password-provided-is-invalid-please-enter-a-valid-password-value/</link>
		<comments>http://informationideas.com/news/2008/02/04/net-error-the-password-provided-is-invalid-please-enter-a-valid-password-value/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 22:13:37 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[asp.net account management]]></category>
		<category><![CDATA[SqlMembershipProvider]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/2008/02/04/net-error-the-password-provided-is-invalid-please-enter-a-valid-password-value/</guid>
		<description><![CDATA[Using the SqlMembershipProvider, you may encounter the error message, "The password provided is invalid. Please enter a valid password value. ", which is not very clear as to the exact problem. Apparently, the default setting in the .net membership configuration requires a password with a minimum of eight character and at least one non alpha [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Using the SqlMembershipProvider, you may encounter the error message, "The password provided is invalid. Please enter a valid password value. ", which is not very clear as to the exact problem.  Apparently, the default setting in the .net membership configuration requires a password with a minimum of eight character and at least one non alpha numeric character such as "!@#$%^&#038;*()".  </p>
<div class="shr-publisher-40"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2008/02/04/net-error-the-password-provided-is-invalid-please-enter-a-valid-password-value/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.335 seconds -->

