<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msdnbangladesh.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>ASP.NET Developers, Bangladesh</title><link>http://msdnbangladesh.net/groups/aspnet/forum/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Debug Build: 31106.3070)</generator><item><title>Join to Microsoft Day @ Dhaka: Official User Group</title><link>http://msdnbangladesh.net/groups/aspnet/forum/p/977/1312.aspx#1312</link><pubDate>Mon, 22 Jun 2009 12:47:25 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:1312</guid><dc:creator>Mohammad Ashraful Alam</dc:creator><slash:comments>0</slash:comments><comments>http://msdnbangladesh.net/groups/aspnet/forum/p/977/1312.aspx#1312</comments><wfw:commentRss>http://msdnbangladesh.net/groups/aspnet/forum/commentrss.aspx?PostID=1312</wfw:commentRss><description>&lt;p&gt;This is the group dedicated to all of the events with respect to Microsoft Day @ Dhaka. You will be able to get latest updates, pictures here. Post your suggestion and feedback to make the future events better. &lt;/p&gt;
&lt;p&gt;Link: &lt;a href="http://www.facebook.com/group.php?gid=196082925042"&gt;http://www.facebook.com/group.php?gid=196082925042&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>test</title><link>http://msdnbangladesh.net/groups/aspnet/forum/p/972/1302.aspx#1302</link><pubDate>Mon, 22 Jun 2009 08:47:31 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:1302</guid><dc:creator>Mohammad Ashraful Alam</dc:creator><slash:comments>0</slash:comments><comments>http://msdnbangladesh.net/groups/aspnet/forum/p/972/1302.aspx#1302</comments><wfw:commentRss>http://msdnbangladesh.net/groups/aspnet/forum/commentrss.aspx?PostID=1302</wfw:commentRss><description>&lt;p&gt;test&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Register for Microsoft Day @ Dhaka</title><link>http://msdnbangladesh.net/groups/aspnet/forum/p/899/1187.aspx#1187</link><pubDate>Tue, 09 Jun 2009 12:18:37 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:1187</guid><dc:creator>Mohammad Ashraful Alam</dc:creator><slash:comments>0</slash:comments><comments>http://msdnbangladesh.net/groups/aspnet/forum/p/899/1187.aspx#1187</comments><wfw:commentRss>http://msdnbangladesh.net/groups/aspnet/forum/commentrss.aspx?PostID=1187</wfw:commentRss><description>&lt;p class="q-details"&gt;Microsoft Community in Bangladesh proudly presents Microsoft Day @ Dhaka. This is a special day dedicated to all Microsoft technology professionals and students in Bangladesh. We will be having the best Microsoft community technologists from Bangladesh - Microsoft Most Valuable Professionals (MVPs) delivering sessions at the event. This technology marathon is a great opportunity to learn from the best and network with each other. &lt;br /&gt;&lt;br /&gt;Both Microsoft developers and networking professionals would find the event worth attending. &lt;br /&gt;The event will also feature a demo bonanza with Windows 7 and an extensive Question and Answer panel with the Bangladesh MVPs to answer your queries. &lt;br /&gt;&lt;br /&gt;Register here: &lt;a target="_blank" href="http://msdnbangladesh.net/redirect?url=http%3A%2F%2Fmsdnbangladesh%2Enet%2Fcontent%2Fmsday%2Easpx&amp;amp;urlhash=5mZN&amp;amp;_t=disc_detail_link"&gt;&lt;span style="color:#003399;"&gt;http://msdnbangladesh.net/content/msday.aspx&lt;/span&gt;&lt;/a&gt; &lt;/p&gt;&lt;p align="center"&gt;[Please visit the site to access the poll]&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Linq to Sql CRUD Snippets</title><link>http://msdnbangladesh.net/groups/aspnet/forum/p/620/847.aspx#847</link><pubDate>Tue, 21 Apr 2009 08:49:12 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:847</guid><dc:creator>Mohammad Ashraful Alam</dc:creator><slash:comments>0</slash:comments><comments>http://msdnbangladesh.net/groups/aspnet/forum/p/620/847.aspx#847</comments><wfw:commentRss>http://msdnbangladesh.net/groups/aspnet/forum/commentrss.aspx?PostID=847</wfw:commentRss><description>&lt;p&gt;LINQ SNIPPETS&lt;/p&gt;
&lt;p&gt;DataClassesDataContext d = new DataClassesDataContext();&lt;/p&gt;
&lt;p&gt;GET A SINGLE&lt;br /&gt;Response.Write(d.GetTable&amp;lt;Category&amp;gt;().SingleOrDefault(c =&amp;gt; c.CategoryID == 1).CategoryName);&lt;/p&gt;
&lt;p&gt;GET A COLLECTION&lt;br /&gt;GridView1.DataSource = d.GetTable&amp;lt;Category&amp;gt;().Where(c =&amp;gt; c.CategoryID == 1).ToList().AsReadOnly();&lt;/p&gt;
&lt;p&gt;GET ALL&lt;br /&gt;GridView1.DataSource = d.GetTable&amp;lt;Category&amp;gt;();&lt;/p&gt;
&lt;p&gt;INSERT SINGLE&lt;br /&gt;Category c = new Category();&lt;br /&gt;c.CategoryName = &amp;quot;xx&amp;quot;;&lt;br /&gt;d.GetTable&amp;lt;Category&amp;gt;().InsertOnSubmit(c);&lt;br /&gt;d.SubmitChanges();&lt;/p&gt;
&lt;p&gt;DELETE SINGLE&lt;br /&gt;Category c = d.GetTable&amp;lt;Category&amp;gt;().SingleOrDefault(c1 =&amp;gt; c1.CategoryID == 9);&lt;br /&gt;d.GetTable&amp;lt;Category&amp;gt;().DeleteOnSubmit(c);&lt;br /&gt;d.SubmitChanges();&lt;/p&gt;
&lt;p&gt;UPDATE SINGLE&lt;br /&gt;Category c = d.GetTable&amp;lt;Category&amp;gt;().SingleOrDefault(c1 =&amp;gt; c1.CategoryID == 11);&lt;br /&gt;c.CategoryName = &amp;quot;Category_Name_Modified&amp;quot;;&lt;br /&gt;d.SubmitChanges();&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Windows Live Writer Configuration</title><link>http://msdnbangladesh.net/groups/aspnet/forum/p/188/243.aspx#243</link><pubDate>Fri, 06 Mar 2009 05:03:35 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:243</guid><dc:creator>S.M. Raihan Iqbal</dc:creator><slash:comments>1</slash:comments><comments>http://msdnbangladesh.net/groups/aspnet/forum/p/188/243.aspx#243</comments><wfw:commentRss>http://msdnbangladesh.net/groups/aspnet/forum/commentrss.aspx?PostID=243</wfw:commentRss><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Is it possible to publish blog posts to this group using Windows Live Writer? What blog URL should I provide to Windows Live Writer so I can write my blog posts using it?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Welcome to Asp.Net Developers, Bangladesh</title><link>http://msdnbangladesh.net/groups/aspnet/forum/p/145/191.aspx#191</link><pubDate>Mon, 02 Mar 2009 05:14:32 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:191</guid><dc:creator>Mohammad Ashraful Alam</dc:creator><slash:comments>0</slash:comments><comments>http://msdnbangladesh.net/groups/aspnet/forum/p/145/191.aspx#191</comments><wfw:commentRss>http://msdnbangladesh.net/groups/aspnet/forum/commentrss.aspx?PostID=191</wfw:commentRss><description>&lt;p&gt;Hello everybody,&lt;/p&gt;
&lt;p&gt;All of you are welcome to this group.&lt;/p&gt;
&lt;p&gt;To learn &amp;amp; share your .NET knowledge quickly, join to the large developer community here: &lt;a href="http://msdnbangladesh.net/groups/aspnet/default.aspx"&gt;http://msdnbangladesh.net/groups/aspnet/default.aspx&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Please forward this message to your messenger friend list to create the largest ASP.NET developer community in Bangladesh.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>