<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Toars</title>
	<link>http://www.toars.com</link>
	<description>I will smile to the world ^o^</description>
	<lastBuildDate>Fri, 06 May 2011 08:50:54 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>WordPress: Briefly unavailable for scheduled maintenance. Check back in a minute.</title>
		<description><![CDATA[I got this error message when I tried to upgrade to the latest version of wordpress. It is very easy to fix, all you need to do is to remove the file " .maintenance" in the root folder.]]></description>
		<link>http://www.toars.com/2011/02/wordpress-briefly-unavailable-for-scheduled-maintenance-check-back-in-a-minute/</link>
			</item>
	<item>
		<title>(1/3) ListView events, ItemDataBound, ItemCreated</title>
		<description><![CDATA[Below are the screenshots about a user control that is using the .NET ListView control. Display Record The ListView control contains many different events. In these examples, the EDIT button, REMOVE button, ADD button, and SAVE button click events are handled respectively. Of course, there are many ways of implementations to get the job done, as far [...]]]></description>
		<link>http://www.toars.com/2010/11/listview-events-01/</link>
			</item>
	<item>
		<title>(2/5) ListView events, ItemInserting, ItemDeleting</title>
		<description><![CDATA[Add Record In order to have this ADD button work, what we need is to wire the events first in the page's code behind. LstItems.ItemInserting += new EventHandler&#60;ListViewInsertEventArgs&#62;(LstItems_ItemInserting); LstItems.ItemDeleting += new EventHandler&#60;ListViewInsertEventArgs&#62;(LstItems_ItemDeleting); LstItems.InsertItemPosition = InsertItemPosition.LastItem; And usually, we will have this insert template either in the first item of this ListView or the last item. [...]]]></description>
		<link>http://www.toars.com/2010/11/listview-events-02/</link>
			</item>
	<item>
		<title>(3/3) ListView events, ItemEditing, ItemCanceling, ItemUpdating</title>
		<description><![CDATA[Edit Record Same for this Edit Record, Save Record and Cancel button click events. Wire the events in the code-behind first. LstItems.ItemEditing += new EventHandler&#60;ListViewItemEventArgs&#62;(LstItems_ItemEditing); LstItems.ItemUpdating += new EventHandler&#60;ListViewItemEventArgs&#62;(LstItems_ItemUpdating); LstItems.ItemCanceling += new EventHandler&#60;ListViewItemEventArgs&#62;(LstItems_ItemCanceling); Button "Edit" click. protected void LstItems_ItemEditing(object sender, ListViewItemEventArgs e) { var item = LstItems.Items[e.NewEditIndex]; // Save the currently selected item to OldDnsRecord [...]]]></description>
		<link>http://www.toars.com/2010/11/listview-events-03/</link>
			</item>
	<item>
		<title>ASP.NET Events</title>
		<description><![CDATA[HttpApplication.BeginRequest HttpApplication.AuthenticateRequest HttpApplication.PostAuthenticateRequest HttpApplication.AuthorizeRequest HttpApplication.PostAuthorizeRequest HttpApplication.ResolveRequestCache HttpApplication.PostResolveRequestCache HttpApplication.MapRequestHandler HttpApplication.PostMapRequestHandler HttpApplication.AcquireRequestState HttpApplication.PostAcquireRequestState HttpApplication.PreRequestHandlerExecute Page.FrameworkInitialize Page.InitializeCulture Page.OnPreInit MasterPage.FrameworkInitialize MasterPageControl.FrameworkInitialize PageControl.FrameworkInitialize MasterPageControl.OnInit PageControl.OnInit MasterPage.OnInit Page.OnInit Page.OnInitComplete Page.LoadPageStateFromPersistenceMedium If IsPostBack Page.LoadControlState If IsPostBack MasterPageControl.LoadControlState If IsPostBack, RegisterRequiresControlState was called and control state contains elements PageControl.LoadControlState If IsPostBack, RegisterRequiresControlState was called and control state contains elements MasterPageControl.LoadViewState If IsPostBack and [...]]]></description>
		<link>http://www.toars.com/2010/11/asp-net-events/</link>
			</item>
	<item>
		<title>ASP.NET Page life cycle</title>
		<description><![CDATA[Page.OnPreInit MasterPageControl.OnInit (for each control on the master page) Control.OnInit (for each contol on the page) MasterPage.OnInit Page.OnInit Page.OnInitComplete Page.LoadPageStateFromPersistenceMedium Page.LoadViewState MasterPage.LoadViewState Page.OnPreLoad Page.OnLoad MasterPage.OnLoad MasterPageControl.OnLoad (for each control on the master page) Control.OnLoad (for each control on the page) OnXXX (control event) MasterPage.OnBubbleEvent Page.OnBubbleEvent Page.OnLoadComplete Page.OnPreRender MasterPage.OnPreRender MasterPageControl.OnPreRender (for each control on the master [...]]]></description>
		<link>http://www.toars.com/2010/11/asp-net-page-life-cycle/</link>
			</item>
	<item>
		<title>C# Questions and Answers &#8211; 09</title>
		<description><![CDATA[How big is the datatype int in .NET? 32 bits. How big is the char? 16 bits (Unicode). How do you initiate a string without escaping each backslash? Put an @ sign in front of the double-quoted string. What are valid signatures for the Main function? public static void Main() public static int Main() public [...]]]></description>
		<link>http://www.toars.com/2010/11/c-sharp-questions-and-answers-09/</link>
			</item>
	<item>
		<title>C# Questions and Answers &#8211; 08</title>
		<description><![CDATA[What’s the implicit name of the parameter that gets passed into the class’ set method? Value, and it’s datatype depends on whatever variable we’re changing. How do you inherit from a class in C#? Place a colon and then the name of the base class. Does C# support multiple inheritance? No, use interfaces instead. When [...]]]></description>
		<link>http://www.toars.com/2010/11/c-sharp-questions-and-answers-08/</link>
			</item>
</channel>
</rss>

