<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Anirudh's Weblog</title>
	<atom:link href="http://eanirudh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eanirudh.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 02 Sep 2011 09:43:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='eanirudh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Anirudh's Weblog</title>
		<link>http://eanirudh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://eanirudh.wordpress.com/osd.xml" title="Anirudh&#039;s Weblog" />
	<atom:link rel='hub' href='http://eanirudh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SILVERLIGHT DYNAMIC DATAGRID</title>
		<link>http://eanirudh.wordpress.com/2011/09/02/silverlight-dynamic-datagrid/</link>
		<comments>http://eanirudh.wordpress.com/2011/09/02/silverlight-dynamic-datagrid/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 09:23:07 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[DATAGRID]]></category>
		<category><![CDATA[SILVERLIGHT]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=124</guid>
		<description><![CDATA[This post is the demo for displaying data from WCF in datagrid in silverlight 4. I have used Department data for demo. Please follow points below: 1. Create a class named DepartmentClass.cs (WCF part) public class DepartmentClass { public string DepartmentName { get; set; } public string Description { get; set; } } 2. Write [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=124&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is the demo for displaying data from WCF in datagrid in silverlight 4. I have used Department data for demo. Please follow points below:</p>
<p>1. Create a class named DepartmentClass.cs (WCF part)<br />
public class DepartmentClass {<br />
public string DepartmentName { get; set; }<br />
public string Description { get; set; }<br />
}<br />
2. Write a select query in .svc.cs file as per below method, we need to define this methid in interface also. The below method is to show how we will send the values to silverlight from WCF. Instead of ObservableCollection we can take list also. da = DataAdapter and con = SqlConnection (WCF part)</p>
<p>public ObservableCollection SelectDepartment(DepartmentClass objDept){<br />
da.SelectCommand = new SqlCommand(&#8220;SELECT departmentName, description FROM tblDepartment WHERE isActive=&#8217;true&#8217;&#8221;);<br />
da.SelectCommand.Connection = con;<br />
using (var deptData = da.SelectCommand.ExecuteReader()){<br />
while (deptData.Read()){<br />
_departmentClasses.Add(new DepartmentClass(){<br />
DepartmentName = deptData.GetString(1),<br />
Description = deptData.GetString(2)});<br />
}<br />
}<br />
con.Close();<br />
return _departmentClasses;<br />
}</p>
<p>3. Write following code in .xaml file. In binding we will provide variable name used in Class. (silverlight part)</p>
<pre>  &lt;sdk:DataGrid AutoGenerateColumns="False" Grid.Row="6"
            Height="187" HorizontalAlignment="Left"
            Margin="116,13,0,0" Name="dataGrid1"
            VerticalAlignment="Top" Width="433"&gt;
   &lt;sdk:DataGrid.Columns&gt;
    &lt;sdk:DataGridTextColumn Width="150" Header="Name"
                  Binding="{Binding DepartmentName}" /&gt;
     &lt;sdk:DataGridTextColumn Width="280" Header="Description"
               Binding="{Binding Description}" /&gt;
   &lt;/sdk:DataGrid.Columns&gt;
  &lt;/sdk:DataGrid&gt;</pre>
<p>4. Following code will be written in .xaml.cs file in constructor.(silverlight part)</p>
<p>public Department()<br />
{<br />
InitializeComponent();</p>
<p>var depProxy = new AdminServiceReference.IadminClient();<br />
depProxy.SelectDepartmentCompleted +=new EventHandler(depProxy_SelectDepartmentCompleted);<br />
depProxy.SelectDepartmentAsync();<br />
}</p>
<p>private void depProxy_SelectDepartmentCompleted(object sender, SelectDepartmentCompletedEventArgs e)<br />
{<br />
if (e.Result != null)<br />
{<br />
dataGrid1.ItemsSource = e.Result;<br />
}<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=124&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2011/09/02/silverlight-dynamic-datagrid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>Storing XML file&#8217;s data in SQL through Store Procedure</title>
		<link>http://eanirudh.wordpress.com/2010/04/19/storing-xml-files-data-in-sql-through-store-procedure/</link>
		<comments>http://eanirudh.wordpress.com/2010/04/19/storing-xml-files-data-in-sql-through-store-procedure/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 11:47:39 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[ASP.NET C#]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Stored Procedure]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=120</guid>
		<description><![CDATA[CREATE PROCEDURE [dbo].[Student] &#8211; Add the parameters for the stored procedure here @studentlXML XML AS BEGIN &#8211; SET NOCOUNT ON added to prevent extra result sets from &#8211; interfering with SELECT statements. SET NOCOUNT ON; &#8212; Insert statements for procedure here Declare @CountHandler int Exec SP_XML_PrepareDocument @CountHandler OUTPUT,@studentlXML INSERT INTO tblStudent &#8211;Table name where we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=120&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>CREATE PROCEDURE [dbo].[Student]<br />
	&#8211; Add the parameters for the stored procedure here<br />
	@studentlXML   XML<br />
AS<br />
BEGIN<br />
	&#8211; SET NOCOUNT ON added to prevent extra result sets from<br />
	&#8211; interfering with SELECT statements.<br />
	SET NOCOUNT ON;</p>
<p>    &#8212; Insert statements for procedure here<br />
	Declare @CountHandler  int<br />
	Exec SP_XML_PrepareDocument @CountHandler OUTPUT,@studentlXML<br />
	INSERT INTO tblStudent &#8211;Table name where we have to save xml data<br />
	SELECT * FROM OPENXML(@CountHandler,&#8221;/friends/friend&#8221;,2)<br />
	WITH tblStudent<br />
	Exec SP_XML_RemoveDocument @CountHandler<br />
END<br />
END</p>
<p>NOTE: @studentlXML is a xml file can be passed as a string or file<br />
 friends is the parent node of xml and friend is a node under friends node, which will be excluded and rest nodes will be treated as column. Please note that node name should be exactly same as column name in table tblStudent</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=120&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2010/04/19/storing-xml-files-data-in-sql-through-store-procedure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>Filling Drop Down List From XML File in ASP.NET C#</title>
		<link>http://eanirudh.wordpress.com/2010/04/19/filling-drop-down-list-from-xml-file-in-asp-net-c/</link>
		<comments>http://eanirudh.wordpress.com/2010/04/19/filling-drop-down-list-from-xml-file-in-asp-net-c/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 11:33:01 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[ASP.NET C#]]></category>
		<category><![CDATA[Dataset]]></category>
		<category><![CDATA[DataView]]></category>
		<category><![CDATA[Dropdown List]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=117</guid>
		<description><![CDATA[If XML is saved as Employees.xml in C Drive:- Code to be written on PAGE LOAD DataSet ds = new DataSet(); ds.ReadXml(MapPath(&#8220;C:\\Employees.xml&#8221;)); DataView dv = ds.Tables["Employee"].DefaultView; dv.Sort = &#8220;Name&#8221;; ddlCountry.DataTextField = &#8220;Name&#8221;; ddlCountry.DataValueField = &#8220;ID&#8221;; ddlCountry.DataSource = dv; ddlCountry.DataBind();<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=117&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If XML is saved as Employees.xml in C Drive:-</p>
<p>Code to be written on PAGE LOAD</p>
<p>DataSet ds = new DataSet();<br />
        ds.ReadXml(MapPath(&#8220;C:\\Employees.xml&#8221;));</p>
<p>        DataView dv = ds.Tables["Employee"].DefaultView;</p>
<p>        dv.Sort = &#8220;Name&#8221;;</p>
<p>        ddlCountry.DataTextField = &#8220;Name&#8221;;<br />
        ddlCountry.DataValueField = &#8220;ID&#8221;;</p>
<p>        ddlCountry.DataSource = dv;<br />
        ddlCountry.DataBind();</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=117&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2010/04/19/filling-drop-down-list-from-xml-file-in-asp-net-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>Date Format Style</title>
		<link>http://eanirudh.wordpress.com/2010/04/19/date-format-style/</link>
		<comments>http://eanirudh.wordpress.com/2010/04/19/date-format-style/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 11:23:00 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Date Format]]></category>
		<category><![CDATA[DateTime]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=115</guid>
		<description><![CDATA[Format Style Output MM-dd-yyyy : 04-09-2010 MMM dd, yyyy : Apr 09, 2010 ddd MM, yyyy : Fri 04, 2010 dddd MM, yyyy : Friday 04, 2010 MMM ddd dd, yyyy : Apr Fri 09, 2010 MMMM ddd dd, yyyy : April Fri 09, 2010 MMMM dddd dd, yyyy : April Friday 09, 2010<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=115&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Format Style	                 Output<br />
MM-dd-yyyy :	                04-09-2010<br />
MMM dd, yyyy :		Apr 09, 2010<br />
ddd MM, yyyy :		Fri 04, 2010<br />
dddd MM, yyyy :		Friday 04, 2010<br />
MMM ddd dd, yyyy :		Apr Fri 09, 2010<br />
MMMM ddd dd, yyyy :	April Fri 09, 2010<br />
MMMM dddd dd, yyyy :	April Friday 09, 2010</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=115&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2010/04/19/date-format-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>Using IFormatProvider for DateTime Formats in ASP.NET C#</title>
		<link>http://eanirudh.wordpress.com/2010/04/19/iformatprovider/</link>
		<comments>http://eanirudh.wordpress.com/2010/04/19/iformatprovider/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 11:20:03 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=113</guid>
		<description><![CDATA[string myDateTime; myDateTime= &#8220;19/02/2008 05:44:00&#8243;; IFormatProvider myculture = new CultureInfo(&#8220;fr-Fr&#8221;, true); dt = DateTime.ParseExact(myDateTime, &#8220;dd/MM/yyyy hh:mm:ss&#8221;, myculture, DateTimeStyles.NoCurrentDateDefault);<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=113&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>string myDateTime;<br />
myDateTime= &#8220;19/02/2008 05:44:00&#8243;;<br />
IFormatProvider myculture = new CultureInfo(&#8220;fr-Fr&#8221;, true);<br />
dt = DateTime.ParseExact(myDateTime, &#8220;dd/MM/yyyy hh:mm:ss&#8221;, myculture, DateTimeStyles.NoCurrentDateDefault);</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=113&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2010/04/19/iformatprovider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>Get Current Page URL IN ASP.NET 2</title>
		<link>http://eanirudh.wordpress.com/2009/02/05/get-current-page-url-in-aspnet-2/</link>
		<comments>http://eanirudh.wordpress.com/2009/02/05/get-current-page-url-in-aspnet-2/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 14:27:48 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[CURRENT PAGE]]></category>
		<category><![CDATA[REQUEST]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=102</guid>
		<description><![CDATA[Following line will return complete url of the current page in asp.net 2.0 Request.Url.AbsoluteUri<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=102&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Following line will return complete url of the current page in asp.net 2.0</p>
<p style="text-align:left;"><strong>Request.Url.AbsoluteUri</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=102&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2009/02/05/get-current-page-url-in-aspnet-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>DATE and TIME in SQL</title>
		<link>http://eanirudh.wordpress.com/2009/02/04/date-and-time-in-sql/</link>
		<comments>http://eanirudh.wordpress.com/2009/02/04/date-and-time-in-sql/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 14:16:17 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[DateTime]]></category>
		<category><![CDATA[Insert]]></category>
		<category><![CDATA[Select]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Store]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=100</guid>
		<description><![CDATA[please check the following link for any type of date and time problem:- http://www.codeproject.com/KB/showcase/RedGate_DateTime.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=100&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>please check the following link for any type of date and time problem:-</p>
<p><a href="http://www.codeproject.com/KB/showcase/RedGate_DateTime.aspx">http://www.codeproject.com/KB/showcase/RedGate_DateTime.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=100&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2009/02/04/date-and-time-in-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>Filling Dropdown List from XMLHTTP response</title>
		<link>http://eanirudh.wordpress.com/2008/12/24/filling-dropdown-list-from-xmlhttp-response/</link>
		<comments>http://eanirudh.wordpress.com/2008/12/24/filling-dropdown-list-from-xmlhttp-response/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 07:28:35 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=98</guid>
		<description><![CDATA[Following function is to fill dropdownlist (TEXT and VALUE) from the response we get from handler file. Just pass dropdown ID and the string in this function.  function FN_fillList(ddl,str){         var arr = str.split(&#8220;;&#8221;);         //To Remove All Items of Drop Down         document.getElementById(ddl).length = 0;        [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=98&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>Following function is to fill dropdownlist (TEXT and VALUE) from the response we get from handler file. Just pass dropdown ID and the string in this function. </div>
<div>function FN_fillList(ddl,str){</div>
<div>        var arr = str.split(&#8220;;&#8221;);</div>
<div>        //To Remove All Items of Drop Down</div>
<div>        document.getElementById(ddl).length = 0;</div>
<div>        document.getElementById(ddl).options[0] = new Option(&#8216;Select&#8217;,0);</div>
<div>        //To Add Items In Drop Down</div>
<div>        for(var i=1,j=1; i &lt; arr.length;i=i+2,j++){</div>
<div>            document.getEle mentById(ddl).options[j] = new Option(arr[i],arr[i+1]);</div>
<div>        }</div>
<div>    }</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=98&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2008/12/24/filling-dropdown-list-from-xmlhttp-response/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>usefull link for saving image in database</title>
		<link>http://eanirudh.wordpress.com/2008/12/06/usefull-link-for-saving-image-in-database/</link>
		<comments>http://eanirudh.wordpress.com/2008/12/06/usefull-link-for-saving-image-in-database/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 11:31:00 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=94</guid>
		<description><![CDATA[http://aspguy.wordpress.com/2008/10/17/reading-and-writing-images-fromto-database/ http://www.codeproject.com/KB/database/ImageSaveInDataBase.aspx http://www.beansoftware.com/asp.net-tutorials/images-database.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=94&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://aspguy.wordpress.com/2008/10/17/reading-and-writing-images-fromto-database/">http://aspguy.wordpress.com/2008/10/17/reading-and-writing-images-fromto-database/</a></p>
<p>http://www.codeproject.com/KB/database/ImageSaveInDataBase.aspx</p>
<p>http://www.beansoftware.com/asp.net-tutorials/images-database.aspx</p>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=94&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2008/12/06/usefull-link-for-saving-image-in-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Control ID in Javascript</title>
		<link>http://eanirudh.wordpress.com/2008/11/12/getting-control-id-in-javascript/</link>
		<comments>http://eanirudh.wordpress.com/2008/11/12/getting-control-id-in-javascript/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 11:23:26 +0000</pubDate>
		<dc:creator>eanirudh</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[ClientID]]></category>
		<category><![CDATA[Control ID]]></category>
		<category><![CDATA[getElementById]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://eanirudh.wordpress.com/?p=91</guid>
		<description><![CDATA[There are two ways of getting the id of dotnet control in javascript  First document.getElementById(&#8220;ctl00$ContentPlaceHolder$TextBox1&#8243;) SECOND document.getElementById(&#8220;&#60;%=TextBox1.ClientID %&#62;&#8221;) If you want to get the id of html control then just write control id in double quotes.For example:- document.getElementById(&#8220;TextBox1&#8243;)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=91&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are two ways of getting the id of dotnet control in javascript </p>
<p><strong>First</strong></p>
<p>document.getElementById(&#8220;ctl00$ContentPlaceHolder$TextBox1&#8243;)</p>
<p><strong>SECOND</strong></p>
<p>d<strong><span style="font-weight:normal;">ocument.getElementById(&#8220;&lt;%=TextBox1.ClientID %&gt;&#8221;)</span><br />
</strong></p>
<p>If you want to get the id of html control then just write control id in double quotes.For example:-</p>
<p>document.getElementById(&#8220;TextBox1&#8243;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eanirudh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eanirudh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eanirudh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eanirudh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eanirudh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eanirudh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eanirudh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eanirudh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eanirudh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eanirudh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eanirudh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eanirudh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eanirudh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eanirudh.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eanirudh.wordpress.com&amp;blog=5095308&amp;post=91&amp;subd=eanirudh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eanirudh.wordpress.com/2008/11/12/getting-control-id-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/632a03b974538af5ebd5156e8cf6094b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eanirudh</media:title>
		</media:content>
	</item>
	</channel>
</rss>
