<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Turkish Online için yorumlar</title>
	<atom:link href="http://www.oiyi.net/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.oiyi.net/blog</link>
	<description>Web Hosting - Web Design - Sesli Chat Hosting - Radio Hosting - Oyun Sunucusu</description>
	<lastBuildDate>Sat, 29 May 2010 23:15:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Now() Fonksiyonunu Biçimlendirme yazısına tugay basaran tarafından yapılan yorumlar</title>
		<link>http://www.oiyi.net/blog/now-fonksiyonunu-bicimlendirme.html/comment-page-1#comment-3</link>
		<dc:creator>tugay basaran</dc:creator>
		<pubDate>Sat, 29 May 2010 23:15:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.oiyi.net/blog/?p=259#comment-3</guid>
		<description>tesekkurler paylsimin icin hicran.. (:</description>
		<content:encoded><![CDATA[<p>tesekkurler paylsimin icin hicran.. (:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Now() Fonksiyonunu Biçimlendirme yazısına hicran tarafından yapılan yorumlar</title>
		<link>http://www.oiyi.net/blog/now-fonksiyonunu-bicimlendirme.html/comment-page-1#comment-2</link>
		<dc:creator>hicran</dc:creator>
		<pubDate>Fri, 28 May 2010 10:01:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.oiyi.net/blog/?p=259#comment-2</guid>
		<description>&#039; Displays time format hh:mm:ss tt 

&#039; h shows 12 hour time format 

&#039; 12:00:00 AM = 12:00:00 AM 

Response.Write(DateTime.Now.ToString(&quot;hh:mm:ss tt&quot;)) 
Response.Write(&quot;&quot;) 

  

&#039; Displays time format hh:mm ss 

Response.Write(DateTime.Now.ToString(&quot;hh:mm ss&quot;)) 
Response.Write(&quot;&quot;) 

  

&#039; Displays time format hh:mm tt 

Response.Write(DateTime.Now.ToString(&quot;hh:mm tt&quot;)) 
Response.Write(&quot;&quot;) 

  

&#039; Displays time format HH:mm:ss tt 

&#039; H shows 24 hour time format 

&#039; 12:00:00 AM = 00:00:00 AM 

Response.Write(DateTime.Now.ToString(&quot;HH:mm:ss tt&quot;)) 
Response.Write(&quot;&quot;) 

  

&#039; Displays time format HH:mm ss 

Response.Write(DateTime.Now.ToString(&quot;HH:mm ss&quot;)) 
Response.Write(&quot;&quot;) 

  

&#039; Displays time format HH:mm tt 

Response.Write(DateTime.Now.ToString(&quot;HH:mm tt&quot;)) 
Response.Write(&quot;&quot;) 

  

&#039; Displays DateTime format MM/dd/yyyy hh:mm:ss tt 

&#039; Time in 12 hour format 

Response.Write(DateTime.Now.ToString(&quot;MM/dd/yyyy hh:mm:ss tt&quot;)) 
Response.Write(&quot;&quot;) 

  

&#039; Displays DateTime format MM/dd/yyyy HH:mm:ss tt 

&#039; Time in 24 Hour format 

Response.Write(DateTime.Now.ToString(&quot;MM/dd/yyyy HH:mm:ss tt&quot;)) 

  

Output: 

05:54:04 PM
05:54 04
05:54 PM
17:54:04 PM
17:54 04
17:54 PM
07/22/2008 05:54:04 PM
07/22/2008 17:54:04 PM 

Belki isinize yarayabilir.... 
asp.net</description>
		<content:encoded><![CDATA[<p>&#8216; Displays time format hh:mm:ss tt </p>
<p>&#8216; h shows 12 hour time format </p>
<p>&#8216; 12:00:00 AM = 12:00:00 AM </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;hh:mm:ss tt&#8221;))<br />
Response.Write(&#8220;&#8221;) </p>
<p>&#8216; Displays time format hh:mm ss </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;hh:mm ss&#8221;))<br />
Response.Write(&#8220;&#8221;) </p>
<p>&#8216; Displays time format hh:mm tt </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;hh:mm tt&#8221;))<br />
Response.Write(&#8220;&#8221;) </p>
<p>&#8216; Displays time format HH:mm:ss tt </p>
<p>&#8216; H shows 24 hour time format </p>
<p>&#8216; 12:00:00 AM = 00:00:00 AM </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;HH:mm:ss tt&#8221;))<br />
Response.Write(&#8220;&#8221;) </p>
<p>&#8216; Displays time format HH:mm ss </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;HH:mm ss&#8221;))<br />
Response.Write(&#8220;&#8221;) </p>
<p>&#8216; Displays time format HH:mm tt </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;HH:mm tt&#8221;))<br />
Response.Write(&#8220;&#8221;) </p>
<p>&#8216; Displays DateTime format MM/dd/yyyy hh:mm:ss tt </p>
<p>&#8216; Time in 12 hour format </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;MM/dd/yyyy hh:mm:ss tt&#8221;))<br />
Response.Write(&#8220;&#8221;) </p>
<p>&#8216; Displays DateTime format MM/dd/yyyy HH:mm:ss tt </p>
<p>&#8216; Time in 24 Hour format </p>
<p>Response.Write(DateTime.Now.ToString(&#8220;MM/dd/yyyy HH:mm:ss tt&#8221;)) </p>
<p>Output: </p>
<p>05:54:04 PM<br />
05:54 04<br />
05:54 PM<br />
17:54:04 PM<br />
17:54 04<br />
17:54 PM<br />
07/22/2008 05:54:04 PM<br />
07/22/2008 17:54:04 PM </p>
<p>Belki isinize yarayabilir&#8230;.<br />
asp.net</p>
]]></content:encoded>
	</item>
</channel>
</rss>

