<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html">Comments - Thani's Blog</title>
  <icon>http://www.blogs.smartcys.com/Content/icons/flame.ico</icon>
  <logo>http://www.blogs.smartcys.com/Content/icons/flame.png</logo>
  <updated>2009-04-29T15:34:24</updated>
  <subtitle type="html">ASP.Net ,Ajax ,WCF ,RIA services ,Silverlight and more...</subtitle>
  <id>http://www.blogs.smartcys.com/comments/atom</id>
  <link rel="alternate" type="text/html" hreflang="en" href="/atom"/>
  <link rel="self" type="application/atom+xml" href="http://www.blogs.smartcys.com/Comments/ATOM"/>
  <generator uri="http://oxite.net" version="1.0">Oxite</generator>
  <entry>
    <title type="html">.Net Ria and Silverlight 3</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/1#c-200904290334240"/>
    <id>http://www.blogs.smartcys.com/Blog/1#c-200904290334240</id>
    <updated>2009-07-25T07:51:24.777</updated>
    <published>2009-04-29T15:34:24</published>
    <author>
      <name>Rachida Dukes</name>
    </author>
    <content type="html" xml:lang="en">
      How a tutorial authentication with .net ria services?&lt;br /&gt;I can't wait to learn about this new concept.&lt;br /&gt;Thanks&lt;br /&gt;
    </content>
  </entry>
  <entry>
    <title type="html">.Net Ria and Silverlight 3</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/1#c-200904300135030"/>
    <id>http://www.blogs.smartcys.com/Blog/1#c-200904300135030</id>
    <updated>2009-07-25T07:51:24.91</updated>
    <published>2009-04-30T01:35:03</published>
    <author>
      <name>MisterFantastic</name>
    </author>
    <content type="html" xml:lang="en">
      Hi Rachida Dukes ,&lt;br /&gt;&lt;br /&gt;I will soon post a Article on .Net RIA Authentication . Please give me some time.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Thani
    </content>
  </entry>
  <entry>
    <title type="html">Asp.Net Excel File Import and Transfer to Sql Server</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/5#c-200905060437000"/>
    <id>http://www.blogs.smartcys.com/Blog/5#c-200905060437000</id>
    <updated>2009-07-25T07:51:25.693</updated>
    <published>2009-05-06T04:37:00</published>
    <author>
      <name>MisterFantastic</name>
    </author>
    <content type="html" xml:lang="en">
      Hi,&lt;br /&gt;&lt;br /&gt;please dont worry. I am giving the code in C# below&lt;br /&gt;&lt;br /&gt;string strconn = null; &lt;br /&gt;    strconn = &quot;Provider=Microsoft.ACE.OLEDB.12.0;Data Source=&quot; + Server.MapPath(&quot;Stest.xlsx&quot;) + &quot;;Extended Properties=\&quot;Excel 12.0\&quot;&quot;; &lt;br /&gt;    OleDbConnection olConn = new OleDbConnection(strconn); &lt;br /&gt;    OleDbDataReader orr = default(OleDbDataReader); &lt;br /&gt;    olConn.Open(); &lt;br /&gt;    OleDbCommand od = new OleDbCommand(&quot;SELECT * FROM [Sheet1$]&quot;, olConn); &lt;br /&gt;    orr = od.ExecuteReader(); &lt;br /&gt;&lt;br /&gt;SqlBulkCopy&lt;br /&gt;-------------&lt;br /&gt;&lt;br /&gt;SqlBulkCopy sqCopy = new SqlBulkCopy(sConn); &lt;br /&gt;    sqCopy.DestinationTableName = &quot;Test&quot;; &lt;br /&gt;    sqCopy.WriteToServer(orr); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;sqCopy.ColumnMappings.Add(&quot;ID&quot;, &quot;EmpId&quot;); &lt;br /&gt;    sqCopy.ColumnMappings.Add(&quot;Name&quot;, &quot;EName&quot;); 
    </content>
  </entry>
  <entry>
    <title type="html">GridView Fixed Header</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/13#c-200905080851100"/>
    <id>http://www.blogs.smartcys.com/Blog/13#c-200905080851100</id>
    <updated>2009-07-25T07:51:26.463</updated>
    <published>2009-05-08T08:51:10</published>
    <author>
      <name>naga</name>
    </author>
    <content type="html" xml:lang="en">
      excellent article
    </content>
  </entry>
  <entry>
    <title type="html">Interesting .Net String Functions</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/17#c-200905100157230"/>
    <id>http://www.blogs.smartcys.com/Blog/17#c-200905100157230</id>
    <updated>2009-07-25T07:51:26.933</updated>
    <published>2009-05-10T01:57:23</published>
    <author>
      <name>Lee Brandt</name>
    </author>
    <content type="html" xml:lang="en">
      Your IsNullOrEmpty function is not correct in C#. Should be:&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;    string tstStr = null;&lt;br /&gt;    if (string.IsNullOrEmpty(tstStr)) {&lt;br /&gt;        Response.Write(&quot;String is empty or null&quot;);&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;Looks like the Copy/Paste monster gotcha!&lt;br /&gt;&lt;br /&gt;~Lee
    </content>
  </entry>
  <entry>
    <title type="html">Interesting .Net String Functions</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/17#c-200905100855310"/>
    <id>http://www.blogs.smartcys.com/Blog/17#c-200905100855310</id>
    <updated>2009-07-25T07:51:27.01</updated>
    <published>2009-05-10T08:55:31</published>
    <author>
      <name>Duy Lam</name>
    </author>
    <content type="html" xml:lang="en">
      This site doesn't work in Firefox ;)&lt;br /&gt;I follow your links of three String's methods and see that they were available in .net 1.0 (only IsNullOrEmpty in 2.0) ?
    </content>
  </entry>
  <entry>
    <title type="html">Interesting .Net String Functions</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/17#c-200905101057070"/>
    <id>http://www.blogs.smartcys.com/Blog/17#c-200905101057070</id>
    <updated>2009-07-25T07:51:27.083</updated>
    <published>2009-05-10T10:57:07</published>
    <author>
      <name>Thanigainathan Siranjeevi</name>
    </author>
    <content type="html" xml:lang="en">
      Hi Duy Lam,&lt;br /&gt;&lt;br /&gt;Thanks for the reply. As you said those two functions are from 1.0 itself. I just want to share the interesting features of this method's.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Thani
    </content>
  </entry>
  <entry>
    <title type="html">GridView Fixed Header</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/13#c-200905101100300"/>
    <id>http://www.blogs.smartcys.com/Blog/13#c-200905101100300</id>
    <updated>2009-07-25T07:51:26.553</updated>
    <published>2009-05-10T11:00:30</published>
    <author>
      <name>Thanigainathan Siranjeevi</name>
    </author>
    <content type="html" xml:lang="en">
      Thanks Naga
    </content>
  </entry>
  <entry>
    <title type="html">Interesting .Net String Functions</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/17#c-200905101107250"/>
    <id>http://www.blogs.smartcys.com/Blog/17#c-200905101107250</id>
    <updated>2009-07-25T07:51:27.167</updated>
    <published>2009-05-10T11:07:25</published>
    <author>
      <name>Thanigainathan Siranjeevi</name>
    </author>
    <content type="html" xml:lang="en">
      Hi Lee,&lt;br /&gt;&lt;br /&gt;I have updated the code now. Thanks for pointing that. Also the theme is changed now and can be viewed in Firefox also.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Thani
    </content>
  </entry>
  <entry>
    <title type="html">Asp.Net Excel File Import and Transfer to Sql Server</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/5#c-200905260618490"/>
    <id>http://www.blogs.smartcys.com/Blog/5#c-200905260618490</id>
    <updated>2009-07-25T07:51:25.787</updated>
    <published>2009-05-26T06:18:49</published>
    <author>
      <name>Program4trix</name>
    </author>
    <content type="html" xml:lang="en">
      Idid all you stated here but got an error saying: &quot;No value given for one or more required parameres&quot;&lt;br /&gt;&lt;br /&gt;in the line: &lt;br /&gt;&lt;br /&gt;orr = od.ExecuteReader()&lt;br /&gt;&lt;br /&gt;Im using vb, please help
    </content>
  </entry>
  <entry>
    <title type="html">GridView Fixed Header</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/13#c-200905270223420"/>
    <id>http://www.blogs.smartcys.com/Blog/13#c-200905270223420</id>
    <updated>2009-07-25T07:51:26.643</updated>
    <published>2009-05-27T14:23:42</published>
    <author>
      <name>kp</name>
    </author>
    <content type="html" xml:lang="en">
      this works perfectly in IE.   Any idea why it doesnt work in firefox?
    </content>
  </entry>
  <entry>
    <title type="html">Silverlight 3 with Bing Translator Services</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/31#c-200906230306470"/>
    <id>http://www.blogs.smartcys.com/Blog/31#c-200906230306470</id>
    <updated>2009-07-25T07:51:28.837</updated>
    <published>2009-06-23T15:06:47</published>
    <author>
      <name>Yasser Makram</name>
    </author>
    <content type="html" xml:lang="en">
      Silverlight does not have built-in support for RTL languages like Arabic, Hebrew, Farsi, and Urdu. This is why in the screenshot shown for Arabic, the text is not displayed correctly. You can use the SilverlightRTL open source library to add support for Arabic. The library is available at http://silverlightRTL.codeplex.com, and you can find more information about it at my blog http://www,silverlightrecipes.com
    </content>
  </entry>
  <entry>
    <title type="html">Silverlight 3 with Bing Translator Services</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/31#c-200906230408380"/>
    <id>http://www.blogs.smartcys.com/Blog/31#c-200906230408380</id>
    <updated>2009-07-25T07:51:28.92</updated>
    <published>2009-06-23T16:08:38</published>
    <author>
      <name>MisterFantastic</name>
    </author>
    <content type="html" xml:lang="en">
      Hi Sir,&lt;br /&gt;&lt;br /&gt;Thanks for the reply. I thought it was displaying correctly. Anyways thanks for pointing that. It will be of great help to us .&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Thani
    </content>
  </entry>
  <entry>
    <title type="html">Dynamic Query with Entity Framework</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/11#c-200907071028430"/>
    <id>http://www.blogs.smartcys.com/Blog/11#c-200907071028430</id>
    <updated>2009-07-25T07:51:26.21</updated>
    <published>2009-07-07T22:28:43</published>
    <author>
      <name>DANIEL LIU</name>
    </author>
    <content type="html" xml:lang="en">
      HOW ABOUT .StartsWith() or .Contains() or in() search filters?&lt;br /&gt;&lt;br /&gt;Thanks for the article.
    </content>
  </entry>
  <entry>
    <title type="html">Silverlight 3 with Ria Authentication service</title>
    <link rel="alternate" type="text/html" href="http://www.blogs.smartcys.com/Blog/24#c-200907190201200"/>
    <id>http://www.blogs.smartcys.com/Blog/24#c-200907190201200</id>
    <updated>2009-07-25T07:51:27.74</updated>
    <published>2009-07-19T14:01:20</published>
    <author>
      <name>Rajiv Singh</name>
    </author>
    <content type="html" xml:lang="en">
      Heyy its a nice walkthrough could please update the example with sl3 final release and .net ria services july version /// . 
    </content>
  </entry>
</feed>
