<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Kiyoshi's Blog - All Comments</title><link>http://weblogs.asp.net/kiyoshi/default.aspx</link><description>Kiyoshi Kusachi is a web developer living in Hawaii</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: Get an Enum value from a string</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/10/06/get-an-enum-value-from-a-string.aspx#7243388</link><pubDate>Fri, 30 Oct 2009 17:41:15 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7243388</guid><dc:creator>D</dc:creator><description>&lt;p&gt;Ты охуел на гаваях жить?&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7243388" width="1" height="1"&gt;</description></item><item><title>re: Sorting a generic list in ascending or descending order</title><link>http://weblogs.asp.net/kiyoshi/archive/2009/02/17/render-aspx-page-as-string.aspx#7186152</link><pubDate>Mon, 31 Aug 2009 03:11:24 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7186152</guid><dc:creator>ziaur10</dc:creator><description>&lt;p&gt;Sabash!!!! &lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7186152" width="1" height="1"&gt;</description></item><item><title>re: Render aspx page as a string</title><link>http://weblogs.asp.net/kiyoshi/archive/2009/02/14/render-aspx-page-as-a-string.aspx#7126871</link><pubDate>Tue, 16 Jun 2009 17:48:07 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7126871</guid><dc:creator>smithouse</dc:creator><description>&lt;p&gt;Nice work. &amp;nbsp;When my user clicks on the submit button, I save the record and then run your code to email the form. &amp;nbsp;But when it gets to the 2nd line, Server.Execute..., it starts an endless loop of executing the submit code over and over. &amp;nbsp;Any idea how to get around this? &amp;nbsp;Thanks&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7126871" width="1" height="1"&gt;</description></item><item><title>re: Cool Javascript Tools for the Web</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/02/12/cool-javascript-tools.aspx#6943778</link><pubDate>Sat, 07 Mar 2009 09:25:14 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6943778</guid><dc:creator>VI</dc:creator><description>&lt;p&gt;HIHI ANH DEP ZAI WA&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6943778" width="1" height="1"&gt;</description></item><item><title>re: DateTime.ToString() Patterns</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/07/28/datetime-tostring-patterns.aspx#6835635</link><pubDate>Wed, 14 Jan 2009 21:06:50 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6835635</guid><dc:creator>Kiyoshi</dc:creator><description>&lt;p&gt;Correction month should be in caps so it should be:&lt;/p&gt;
&lt;p&gt;ex: &amp;nbsp; C# - Convert.ToDateTime(TextBox1.Text).ToString(&amp;quot;MM/dd/yyyy&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VB - CType(TextBox1.Text, DateTime).ToString(&amp;quot;MM/dd/yyyy&amp;quot;)&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6835635" width="1" height="1"&gt;</description></item><item><title>re: DateTime.ToString() Patterns</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/07/28/datetime-tostring-patterns.aspx#6835632</link><pubDate>Wed, 14 Jan 2009 21:01:28 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6835632</guid><dc:creator>Kiyoshi</dc:creator><description>&lt;p&gt;Anuj,&lt;/p&gt;
&lt;p&gt;using TextBox1.ToString() will attempt to create a string representation of the object which cannot work in this case. &lt;/p&gt;
&lt;p&gt;If you are using a TextBox, you must first cast it to a DateTime and use the .Text property.&lt;/p&gt;
&lt;p&gt;ex: &amp;nbsp; C# - Convert.ToDateTime(TextBox1.Text).ToString(&amp;quot;dd/mm/yyyy&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; VB - CType(TextBox1.Text, DateTime).ToString(&amp;quot;dd/mm/yyyy&amp;quot;)&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6835632" width="1" height="1"&gt;</description></item><item><title>re: DateTime.ToString() Patterns</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/07/28/datetime-tostring-patterns.aspx#6835191</link><pubDate>Wed, 14 Jan 2009 09:35:26 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6835191</guid><dc:creator>Anuj</dc:creator><description>&lt;p&gt;TextBox1.Tostring('d') and TextBox1.Tostring(&amp;quot;dd/mm/yyyy&amp;quot;)&lt;/p&gt;
&lt;p&gt;both gives error &amp;quot;No overload for method ToString takes 1 argument&amp;quot; &lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6835191" width="1" height="1"&gt;</description></item><item><title>Convert String to Database DateTime</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/07/28/datetime-tostring-patterns.aspx#6749068</link><pubDate>Fri, 21 Nov 2008 05:15:31 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6749068</guid><dc:creator>Kiyoshi's Blog</dc:creator><description>&lt;p&gt;When debugging database datetime datatypes in my apps, I like to fake the data sometimes.&amp;amp;#160; Heres&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6749068" width="1" height="1"&gt;</description></item><item><title>re: Using Reflection and Type.GetType</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/10/17/using-type-gettype.aspx#6696867</link><pubDate>Tue, 21 Oct 2008 18:46:38 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6696867</guid><dc:creator>RichardD</dc:creator><description>&lt;p&gt;The only difference between:&lt;/p&gt;
&lt;p&gt;Type.GetType(typeof(&amp;lt;object&amp;gt;).AssemblyQualifiedName)&lt;/p&gt;
&lt;p&gt;and:&lt;/p&gt;
&lt;p&gt;typeof(&amp;lt;object&amp;gt;)&lt;/p&gt;
&lt;p&gt;is that the second statement will be considerably faster, and is easier to read.&lt;/p&gt;
&lt;p&gt;Your code can be written as:&lt;/p&gt;
&lt;p&gt;RemoveObject obj = (RemoteObject)Activator.GetObject(typeof(RemoteObject), &amp;quot;&lt;a rel="nofollow" target="_new" href="http://localhost:4736/RemoteObject.rem&amp;quot;"&gt;localhost/RemoteObject.rem&amp;quot;&lt;/a&gt;);&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6696867" width="1" height="1"&gt;</description></item><item><title>re: Call Javascript Function on Postback</title><link>http://weblogs.asp.net/kiyoshi/archive/2008/02/05/call-javascript-function-on-postback.aspx#6657210</link><pubDate>Sat, 04 Oct 2008 04:49:56 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6657210</guid><dc:creator>Chaitanya</dc:creator><description>&lt;p&gt;Hey thats great... it worked. I am using frames and depending on the menu selected in to drop down I am changing the link to open page in left frame. For this I have to send query strings which was re initializing when page was auto postback. But above code solve my problem. Thanks a lot.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6657210" width="1" height="1"&gt;</description></item></channel></rss>