<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4748700785620688378</id><updated>2011-08-01T17:56:20.895-07:00</updated><category term='SharePoint'/><category term='General'/><category term='English'/><category term='ACT CRM'/><category term='.NET'/><title type='text'>Learn .NET, SharePoint, EPiServer CMS and BizTalk</title><subtitle type='html'>Interested to learn about .NET, SharePoint, EPiServer CMS and BizTalk server then you are at right place.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://challab.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-4677595634767731113</id><published>2009-09-05T03:06:00.000-07:00</published><updated>2009-09-05T03:07:52.028-07:00</updated><title type='text'>Exporting DataSet to Excel</title><content type='html'>&lt;p&gt;&lt;br /&gt;Exporting Dataset to Excel is not a big deal. Wide range of help related to it is available on the net. This article for Exporting Dataset to Excel with the idea that the beneficiary will only need to COPY, PASTE and USE it.&lt;br /&gt;&lt;br /&gt;Here is the code.&lt;br /&gt;&lt;br /&gt;Add a class and copy the below code into it:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;using System;&lt;br /&gt;using System.Data;&lt;br /&gt;using System.Configuration;&lt;br /&gt;using System.Web;&lt;br /&gt;using System.Web.Security;&lt;br /&gt;using System.Web.UI;&lt;br /&gt;using System.Web.UI.WebControls;&lt;br /&gt;using System.Web.UI.WebControls.WebParts;&lt;br /&gt;using System.Web.UI.HtmlControls;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public class ExportDataset&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;public void ExportToExcel(DataSet dSet, int TableIndex, HttpResponse Response, string FileName)&lt;br /&gt;{&lt;br /&gt;Response.Clear();&lt;br /&gt;Response.Charset = "";&lt;br /&gt;Response.ContentType = "application/vnd.ms-excel";&lt;br /&gt;Response.AppendHeader("content-disposition", "attachment; filename=" + FileName + ".xls");&lt;br /&gt;System.IO.StringWriter sw = new System.IO.StringWriter();&lt;br /&gt;System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(sw);&lt;br /&gt;GridView gv = new GridView();&lt;br /&gt;gv.DataSource = dSet.Tables[TableIndex];&lt;br /&gt;gv.DataBind();&lt;br /&gt;gv.RenderControl(hw);&lt;br /&gt;Response.Write(sw.ToString());&lt;br /&gt;Response.End();&lt;br /&gt;}&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And copy the following code on the Button Click Event (or at appropriate place):&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;SqlConnection con = new SqlConnection&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;("Server=TestServer;uid=test;pwd=test;database=test;");&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;con.Open();&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;SqlDataAdapter adp = new SqlDataAdapter("select * from BTA_tblTimeEntry", con);&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;DataSet ds = new DataSet();&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;adp.Fill(ds);&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;ExportDataset objExport = new ExportDataset();&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;objExport.ExportToExcel(ds, 0, Response, "Report");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;con.Close();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http://sunilksaini.blogspot.com/2007/07/export-dataset-to-excel.html"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-4677595634767731113?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/4677595634767731113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/09/exporting-dataset-to-excel.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/4677595634767731113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/4677595634767731113'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/09/exporting-dataset-to-excel.html' title='Exporting DataSet to Excel'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-3394276814161870130</id><published>2009-08-20T21:42:00.000-07:00</published><updated>2009-08-20T21:45:33.285-07:00</updated><title type='text'>SharePoint Videos</title><content type='html'>Hi Friends,&lt;br /&gt;&lt;br /&gt;Please check my latest blog for updates on only SharePoint.&lt;br /&gt;&lt;br /&gt;It contains SharePoint interview questions and Learning material.&lt;br /&gt;&lt;br /&gt;My New SharePoint blog link: &lt;a href="http://sharepointvideos.wordpress.com"&gt;Check SharePoint Videos&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Happy Learning :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-3394276814161870130?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/3394276814161870130/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/08/sharepoint-videos.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/3394276814161870130'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/3394276814161870130'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/08/sharepoint-videos.html' title='SharePoint Videos'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-9152543231664258087</id><published>2009-08-11T02:43:00.000-07:00</published><updated>2009-08-11T02:57:07.413-07:00</updated><title type='text'>What is Tivoli Storage Manager?</title><content type='html'>IBM Tivoli Storage Manager is a client and server program that provides storage management solutions to customers in a multi-vendor computer environment. IBM Tivoli Storage Manager provides an automated, centrally scheduled, policy-managed backup, archive, and space-management facility for file servers and workstations.&lt;br /&gt;&lt;br /&gt;For more details &lt;a target="_blank" href="http://www-01.ibm.com/software/tivoli/"&gt;&lt;span style="font-style:italic;"&gt;IBM Tivoli Storage Manager&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-9152543231664258087?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/9152543231664258087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/08/what-is-tivoli-storage-manager.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/9152543231664258087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/9152543231664258087'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/08/what-is-tivoli-storage-manager.html' title='What is Tivoli Storage Manager?'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-8541771548930073637</id><published>2009-08-10T23:56:00.000-07:00</published><updated>2009-08-11T00:14:56.596-07:00</updated><title type='text'>What is EPiServer CMS?</title><content type='html'>Before going the definition of EPiServer CMS, lets learn about CMS.&lt;br /&gt;&lt;br /&gt;Go through the following link to know &lt;a href="http://challab.blogspot.com/2009/08/what-is-cms.html"&gt;What exactly CMS&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;EpiServer CMS comes under Web Content Management System (WCMS), which allows us to Publish and Design process of pages on website with out any specific knowledge on HTML.&lt;br /&gt;&lt;br /&gt;More about &lt;a target="_blank" href="http://en.wikipedia.org/wiki/Web_content_management_system"&gt;&lt;span style="font-style:italic;"&gt;WCMS&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-8541771548930073637?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/8541771548930073637/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/08/what-is-episerver-cms.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8541771548930073637'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8541771548930073637'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/08/what-is-episerver-cms.html' title='What is EPiServer CMS?'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-5617639971047423249</id><published>2009-08-10T23:46:00.001-07:00</published><updated>2009-08-10T23:56:39.201-07:00</updated><title type='text'>What is CMS?</title><content type='html'>A content management system (CMS) is a system used to manage the content of a Web site. Typically, a CMS consists of two elements: the content management application (CMA) and the content delivery application (CDA). The CMA element allows the content manager or author, who may not know Hypertext Markup Language (HTML), to manage the creation, modification, and removal of content from a Web site without needing the expertise of a Webmaster. The CDA element uses and compiles that information to update the Web site. The features of a CMS system vary, but most include Web-based publishing, format management, revision control, and indexing, search, and retrieval.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-5617639971047423249?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/5617639971047423249/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/08/what-is-cms.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5617639971047423249'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5617639971047423249'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/08/what-is-cms.html' title='What is CMS?'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-4351273870888431442</id><published>2009-08-10T23:36:00.000-07:00</published><updated>2009-08-10T23:39:18.664-07:00</updated><title type='text'>Microsoft Office SharePoint Designer 2007</title><content type='html'>Office SharePoint Designer 2007 uses FrontPage technology, but the new name reflects the emphasis on creating and customizing SharePoint sites and customizing applications on the SharePoint platform. With Office SharePoint Designer 2007, you can build sophisticated no-code solutions such as Data Views, reports, and workflow tracking quickly and easily by using menus, task panes, and templates.&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepointdesigner/FX100646991033.aspx"&gt;&lt;span style="font-style:italic;"&gt;Help for SharePoint Designer 2007&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-4351273870888431442?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/4351273870888431442/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/08/microsoft-office-sharepoint-designer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/4351273870888431442'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/4351273870888431442'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/08/microsoft-office-sharepoint-designer.html' title='Microsoft Office SharePoint Designer 2007'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-8894377853872279837</id><published>2009-08-10T23:32:00.000-07:00</published><updated>2009-08-10T23:35:45.052-07:00</updated><title type='text'>Video demos and training for office SharePoint server 2007</title><content type='html'>Please go through the below link for SharePoint video demos and training.&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/cc262880.aspx"&gt;&lt;span style="font-style:italic;"&gt;SharePoint Video demos and Training&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thank you&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-8894377853872279837?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/8894377853872279837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/08/video-demos-and-training-for-office.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8894377853872279837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8894377853872279837'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/08/video-demos-and-training-for-office.html' title='Video demos and training for office SharePoint server 2007'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-5308627994664309764</id><published>2009-07-23T21:30:00.001-07:00</published><updated>2009-07-23T21:33:55.112-07:00</updated><title type='text'>Access modifiers in C#.</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_VFZWnoLQbic/Smk5b5CHgaI/AAAAAAAAAC0/jWwoKZDBcfI/s1600-h/AccessModifiersincsharp.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 120px;" src="http://2.bp.blogspot.com/_VFZWnoLQbic/Smk5b5CHgaI/AAAAAAAAAC0/jWwoKZDBcfI/s400/AccessModifiersincsharp.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5361879982690238882" /&gt;&lt;/a&gt;&lt;br /&gt;The Default access modifier for class is &lt;span style="font-style:italic;"&gt;'internal'&lt;/span&gt;.&lt;br /&gt;The Default access modifier for all the members of class is &lt;span style="font-style:italic;"&gt;'private'&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-5308627994664309764?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/5308627994664309764/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/access-modifiers-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5308627994664309764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5308627994664309764'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/access-modifiers-in-c.html' title='Access modifiers in C#.'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_VFZWnoLQbic/Smk5b5CHgaI/AAAAAAAAAC0/jWwoKZDBcfI/s72-c/AccessModifiersincsharp.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-5067353052402718396</id><published>2009-07-23T09:45:00.000-07:00</published><updated>2009-07-23T21:27:42.377-07:00</updated><title type='text'>Visual Basic counterparts for each of the C# keywords.</title><content type='html'>&lt;div &gt;&lt;br /&gt;&lt;table cellspacing="0" cellpadding="0" border="1" style="border: medium none ; border-collapse: collapse;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border: 1pt solid windowtext; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt; &lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: solid solid solid none; border-color: windowtext windowtext windowtext -moz-use-text-color; border-width: 1pt 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;C#&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: solid solid solid none; border-color: windowtext windowtext windowtext -moz-use-text-color; border-width: 1pt 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;VB&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;Class cannot be inherited (cannot be a base class).&lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;Sealed&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;NotInheritable&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;Class cannot be instantiated but only used as based&lt;br/&gt;   class and/or with abstract methods.&lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;Abstract&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;MustInherit&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;For class members: member is accessible only from the&lt;br/&gt;   class in which it is declared. For classes: only allowed on nested classes&lt;br/&gt;   to restrict access to the nested class to the containing class..&lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;Private&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;Private&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;For class members: member is accessible only from types&lt;br/&gt;   defined in the same assembly. For classes: class is accessible only from&lt;br/&gt;   types in the same assembly.&lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;Internal&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;Friend &lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;For members: member is accessible from the class in&lt;br/&gt;   which it is declared and from any class derived from that class. &lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;Protected&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;Protected&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;Combines the access of Protected and Internal for a&lt;br/&gt;   class member&lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;Protected Internal&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;Protected Friend&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;Access is not restricted.&lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;Public&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;Public&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="307" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 3.2in;"&gt;&lt;br/&gt;   &lt;p&gt;Hides a member inherited from a base class.&lt;/p&gt;&lt;/td&gt;&lt;td width="156" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 117pt;"&gt;&lt;br/&gt;   &lt;p&gt;New&lt;/p&gt;&lt;/td&gt;&lt;td width="127" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 95.4pt;"&gt;&lt;br/&gt;   &lt;p&gt;Shadows&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-5067353052402718396?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/5067353052402718396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/visual-basic-counterparts-for-each-of-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5067353052402718396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5067353052402718396'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/visual-basic-counterparts-for-each-of-c.html' title='Visual Basic counterparts for each of the C# keywords.'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-4028832977107758505</id><published>2009-07-15T13:35:00.000-07:00</published><updated>2009-07-15T13:39:31.904-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ACT CRM'/><title type='text'>Getting Contacts from ACT CRM</title><content type='html'>public ContactList GetContacts(SortCriteria sortCriteria);&lt;br /&gt;&lt;br /&gt;//Example 1&lt;br /&gt;ContactList cList = ActFwk.Contacts.GetContacts(null);&lt;br /&gt;&lt;br /&gt;//Example 2&lt;br /&gt;//This example populates a ContactList sorted by the contacts Last Name, First Name.&lt;br /&gt;//It then displays the name of the first contact in the list.&lt;br /&gt;ContactFieldDescriptor cfd1 = ActFwk.Contacts.GetContactFieldDescriptor("TBL_CONTACT.LASTNAME", true);&lt;br /&gt;ContactFieldDescriptor cfd2 = ActFwk.Contacts.GetContactFieldDescriptor("TBL_CONTACT.FIRSTNAME",true);&lt;br /&gt;SortCriteria[] sCriteria={new SortCriteria(cfd1,ListSortDirection.Ascending),&lt;br /&gt;                          new SortCriteria(cfd2,ListSortDirection.Ascending)&lt;br /&gt;                         };&lt;br /&gt;ContactList cList = ActFwk.Contacts.GetContacts(sCriteria);&lt;br /&gt;Contact cContact = cList[0];&lt;br /&gt;MessageBox.Show(cContact.FullName);&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-4028832977107758505?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/4028832977107758505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/getting-contacts-from-act-crm.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/4028832977107758505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/4028832977107758505'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/getting-contacts-from-act-crm.html' title='Getting Contacts from ACT CRM'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-2839300310866930897</id><published>2009-07-12T10:07:00.002-07:00</published><updated>2009-07-15T13:39:49.069-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>Explain about documentation comments.</title><content type='html'>C-Sharp introduced &lt;span style="font-style:italic;"&gt;documentation comments&lt;/span&gt; to generate the documentation for your classes and programs. These are line comments and start with triple slash mark (///).&lt;br /&gt;&lt;br /&gt;/// These are &lt;span style="font-style:italic;"&gt;documentation comments&lt;/span&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-2839300310866930897?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/2839300310866930897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/explain-about-documentation-comments.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2839300310866930897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2839300310866930897'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/explain-about-documentation-comments.html' title='Explain about documentation comments.'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-809238130270691855</id><published>2009-07-12T09:58:00.001-07:00</published><updated>2009-07-15T13:39:49.070-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>Can CSharp program have morethan one Main method?</title><content type='html'>Yes. but you have to explicitly identify which Main method is the entry point at run-time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-809238130270691855?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/809238130270691855/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/can-csharp-program-have-morethan-one.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/809238130270691855'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/809238130270691855'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/can-csharp-program-have-morethan-one.html' title='Can CSharp program have morethan one Main method?'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-2403103639619580215</id><published>2009-07-12T09:44:00.000-07:00</published><updated>2009-07-15T13:39:49.070-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>What is a namespace?</title><content type='html'>&lt;span style="font-style:italic;"&gt;namespace&lt;/span&gt; is a collection of logically related classes. The purpose of &lt;span style="font-style:italic;"&gt;namespace&lt;/span&gt; is to prevent name conflicts. &lt;span style="font-style:italic;"&gt;namespace&lt;/span&gt; can contain child &lt;span style="font-style:italic;"&gt;namespace&lt;/span&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-2403103639619580215?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/2403103639619580215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/what-is-namespace.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2403103639619580215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2403103639619580215'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/what-is-namespace.html' title='What is a namespace?'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-8063105031024645355</id><published>2009-07-12T06:54:00.000-07:00</published><updated>2009-07-15T13:39:49.070-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>Where the Project and Solution information stored?</title><content type='html'>&lt;span style="font-weight:bold;"&gt;Project:&lt;/span&gt; Project is a combination of Executable and Library files. A project's information is usually stored in a file with the extension of '.csproj' for C-Sharp projects, '.vbproj' for VB.NET projects.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Solution:&lt;/span&gt; Solution is a place holder for logically related projects. Solution information is usually stored in a file with the extension of '.sln'.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-8063105031024645355?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/8063105031024645355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/where-project-and-solution-information.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8063105031024645355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8063105031024645355'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/where-project-and-solution-information.html' title='Where the Project and Solution information stored?'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-2245572795441891513</id><published>2009-07-12T04:22:00.000-07:00</published><updated>2009-07-12T04:28:40.375-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>.NET Framework</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_VFZWnoLQbic/SlnHtAE_K4I/AAAAAAAAACk/elIq3FTNwyQ/s1600-h/Framework.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 318px; height: 320px;" src="http://3.bp.blogspot.com/_VFZWnoLQbic/SlnHtAE_K4I/AAAAAAAAACk/elIq3FTNwyQ/s320/Framework.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5357532807662873474" /&gt;&lt;/a&gt;&lt;br /&gt;The .NET Framework is the combination of layers of CLR, FCL, Data and XML classes and all our .NET (Windows, Web, Web Services) Applications.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-2245572795441891513?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/2245572795441891513/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/net-framework.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2245572795441891513'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2245572795441891513'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/net-framework.html' title='.NET Framework'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_VFZWnoLQbic/SlnHtAE_K4I/AAAAAAAAACk/elIq3FTNwyQ/s72-c/Framework.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-6926571896723106355</id><published>2009-07-12T04:10:00.000-07:00</published><updated>2009-07-12T04:28:40.376-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>Garbage Collection (GC)</title><content type='html'>CLR also contains Garbage Collector (GC), Which runs in a low priority thread and checks for un-referenced, dynamically allocated memory space. If it finds some data that is no longer referenced by any variable/reference, it re-claims it and returns it to the OS. The presence of Garbage Collector frees the programmer keeping track of dangling data. Ask any C++ Programmer how big a relief it is !!! :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-6926571896723106355?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/6926571896723106355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/garbage-collection-gc.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/6926571896723106355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/6926571896723106355'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/garbage-collection-gc.html' title='Garbage Collection (GC)'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-8734816924448829837</id><published>2009-07-12T03:32:00.000-07:00</published><updated>2009-07-12T04:04:31.004-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>The Common Type System (CTS)</title><content type='html'>.NET Framework defines a Common Type System (CTS), like CLS, CTS is also a set of standards. CTS defines the basic data types that IL understands. So each .NET language should map its data types to these CTS data types. This makes it possible for the two languages to communicate each other by passing/receiving parameters to and from each other.&lt;br /&gt;&lt;br /&gt;Example: CTS defines a type, Int32, an integral data type of 32 bits, which is mapped by C# through &lt;span style="font-style:italic;"&gt;int&lt;/span&gt;, VB.NET through &lt;span style="font-style:italic;"&gt;Integer&lt;/span&gt; data type.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-8734816924448829837?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/8734816924448829837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/common-type-system-cts.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8734816924448829837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/8734816924448829837'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/common-type-system-cts.html' title='The Common Type System (CTS)'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-9113102024565892657</id><published>2009-07-12T03:25:00.000-07:00</published><updated>2009-07-12T04:08:15.861-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>The Common Language Specification (CLS)</title><content type='html'>Microsoft has released a small set of specifications that each language should meet to qualify as a .NET compliant language. The code which is under CLS boundary can be usable in any other .NET Language. Those set of specifications are nothing but CLS in .NET Framework.&lt;br /&gt;&lt;br /&gt;Example: There should not be any global function declarations, no pointers, no multiple inheritance and things like that.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-9113102024565892657?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/9113102024565892657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/common-language-specification-cls.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/9113102024565892657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/9113102024565892657'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/common-language-specification-cls.html' title='The Common Language Specification (CLS)'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-5813995824737625601</id><published>2009-07-12T03:00:00.001-07:00</published><updated>2009-07-12T04:04:31.004-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>The Framework Class Library (FCL)</title><content type='html'>The .NET Framework provides a huge Framework (or Base) Class Library for common, usual tasks. FCL contains thousands of classes to provide access to Windows API and common functions like String Manipulation, Common Data Structures, IO, Streams, Threads, Security, Network Programming, Windows Programming, Web Programming, Data Access etc. We can use all those FCL classes in our .NET programs, even we can even apply inheritance and polymorphism to all these FCL classes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-5813995824737625601?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/5813995824737625601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/framework-class-library-fcl.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5813995824737625601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5813995824737625601'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/framework-class-library-fcl.html' title='The Framework Class Library (FCL)'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-6930411355870610202</id><published>2009-07-12T00:17:00.000-07:00</published><updated>2009-07-12T04:04:31.005-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>Just In Time Compilers (JITers)</title><content type='html'>When MSIL code needs to be executed, CLR invokes the JIT compiler, which compile the IL code into executable binary code (OS native code) i.e. exe or dll for a specific machine and OS. JITers in many ways are different from traditional compilers as JITers compile MSIL into native code only when desired.&lt;br /&gt;&lt;br /&gt;Example: When a function is called, the MSIL of the function's body is converted to native code &lt;span style="font-style:italic;"&gt;just in time&lt;span style="font-weight:bold;"&gt;&lt;/span&gt;&lt;/span&gt;. So the part of the code that is not used by that particular run is never converted to native code. If some MSIL code is converted to native code, from the next run onwards the CLR uses the same copy of native code without re-compiling. So if program runs for some time (assuming that all or most of the functions get called), then it won't have just-in-time performance penalty.&lt;br /&gt;&lt;br /&gt;Since JITers are aware of the specific processor and OS at runtime, they can optimize code extremely efficiently resulting in very robust applications.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-6930411355870610202?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/6930411355870610202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/just-in-time-compilers-jiters.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/6930411355870610202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/6930411355870610202'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/just-in-time-compilers-jiters.html' title='Just In Time Compilers (JITers)'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-5917360900858079525</id><published>2009-07-11T23:47:00.001-07:00</published><updated>2009-07-12T04:04:31.005-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>MSIL (Microsoft Intermediate Language) Code</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_VFZWnoLQbic/SlmHJYVunNI/AAAAAAAAACc/DkWmjZAdaeA/s1600-h/MSIL.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 37px;" src="http://3.bp.blogspot.com/_VFZWnoLQbic/SlmHJYVunNI/AAAAAAAAACc/DkWmjZAdaeA/s320/MSIL.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5357461826956074194" /&gt;&lt;/a&gt;&lt;br /&gt;When we compile our .NET program using the corresponding Language compiler, source code does not get converted into the executable binary (OS native) code, but to an intermediate code  known as MSIL, which is interpreted by the Common Language Runtime. MSIL is operating system and hardware independent code. CLR uses the JIT (Just In Time) compiler to convert MSIL into OS understandable code. MSIL code is similar for any .NET language.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-5917360900858079525?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/5917360900858079525/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/msil-microsoft-intermediate-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5917360900858079525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/5917360900858079525'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/msil-microsoft-intermediate-language.html' title='MSIL (Microsoft Intermediate Language) Code'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_VFZWnoLQbic/SlmHJYVunNI/AAAAAAAAACc/DkWmjZAdaeA/s72-c/MSIL.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-7122606483113668199</id><published>2009-07-11T23:27:00.000-07:00</published><updated>2009-07-12T04:04:31.005-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>Common Language Runtime</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_VFZWnoLQbic/SlmDfdA1NnI/AAAAAAAAACQ/h6BlQFsQdKw/s1600-h/CLR.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 181px;" src="http://2.bp.blogspot.com/_VFZWnoLQbic/SlmDfdA1NnI/AAAAAAAAACQ/h6BlQFsQdKw/s320/CLR.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5357457808121214578" /&gt;&lt;/a&gt;&lt;br /&gt;The Most Important concept of .NET Framework is the existance and fucntionality of the Common Language Runtime (CLR), also called as .NET Runtime. It is a framework layer that resides between Operating System and our .NET applications, It handles the execution of all the .NET applications. All our programs do not directly communnicate with OS but go through the CLR.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-7122606483113668199?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/7122606483113668199/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/07/common-language-runtime.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/7122606483113668199'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/7122606483113668199'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/07/common-language-runtime.html' title='Common Language Runtime'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_VFZWnoLQbic/SlmDfdA1NnI/AAAAAAAAACQ/h6BlQFsQdKw/s72-c/CLR.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-2916301840466590645</id><published>2009-06-25T01:36:00.000-07:00</published><updated>2009-07-12T04:05:15.021-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>What is CAML</title><content type='html'>CAML (Collaborative Application Markup Language) is an XML based markup language used with the family of Microsoft SharePoint technologies (Windows Sharepoint Services and Office SharePoint Server). Unlike plain XML, CAML contains specific groups of tags to both define and display (render) data.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-2916301840466590645?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/2916301840466590645/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/06/what-is-caml.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2916301840466590645'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/2916301840466590645'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/06/what-is-caml.html' title='What is CAML'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-1970102543513634164</id><published>2009-02-25T00:33:00.000-08:00</published><updated>2009-07-12T04:05:29.281-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='General'/><title type='text'>How to download YouTube Videos</title><content type='html'>Hi Friends,&lt;br /&gt;&lt;br /&gt;Downloading YouTube videos is very very easy, just involves changing the YouTube url, that's it.&lt;br /&gt;&lt;br /&gt;Check the video on "Work With SharePoint site columns"&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.youtube.com/watch?v=WjUF3TuBVfo&amp;feature=PlayList&amp;p=55FB32C1841F455A&amp;index=0&amp;playnext=1"&gt;http://www.youtube.com/watch?v=WjUF3TuBVfo&amp;feature=PlayList&amp;p=55FB32C1841F455A&amp;index=0&amp;playnext=1&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now if you want to download this video just replace youtube -&gt; voobys&lt;br /&gt;&lt;br /&gt;so now the link will be displayed as&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.voobys.com/watch?v=WjUF3TuBVfo&amp;feature=PlayList&amp;p=55FB32C1841F455A&amp;index=0&amp;playnext=1"&gt;http://www.voobys.com/watch?v=WjUF3TuBVfo&amp;feature=PlayList&amp;p=55FB32C1841F455A&amp;index=0&amp;playnext=1&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now click on this latest link and download the video.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-1970102543513634164?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/1970102543513634164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/02/how-to-download-youtube-videos.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/1970102543513634164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/1970102543513634164'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/02/how-to-download-youtube-videos.html' title='How to download YouTube Videos'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-6516597887354837928</id><published>2009-02-09T21:07:00.001-08:00</published><updated>2009-07-12T04:05:15.021-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>What’s New in SharePoint 2007?</title><content type='html'>What’s New in SharePoint 2007?&lt;br /&gt;&lt;br /&gt;Microsoft divides the capacities of SharePoint Server 2007 into six general areas:&lt;br /&gt;&lt;br /&gt;1. Business intelligence&lt;br /&gt;2. Business process and forms&lt;br /&gt;3. Collaboration&lt;br /&gt;4. Enterprise content management&lt;br /&gt;5. Enterprise search&lt;br /&gt;6. Portals&lt;br /&gt;&lt;br /&gt;Each area contains updated or completely new features available in MOSS 2007.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-6516597887354837928?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/6516597887354837928/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/02/whats-new-in-sharepoint-2007.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/6516597887354837928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/6516597887354837928'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/02/whats-new-in-sharepoint-2007.html' title='What’s New in SharePoint 2007?'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-9195557201409488244</id><published>2009-02-09T20:54:00.000-08:00</published><updated>2009-07-12T04:05:15.021-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>Sharepoint Certification and Courses</title><content type='html'>Dear Friends,&lt;br /&gt;&lt;br /&gt;Certifications on MOSS and WSS.&lt;br /&gt;&lt;br /&gt;MOSS: Microsoft Office SharePoint Server&lt;br /&gt;&lt;br /&gt;In MOSS we have MOSS Administration and MOSS Application development&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.microsoft.com/learning/mcp/mcts/spserver/config/default.mspx"&gt;MCTS: Microsoft Office SharePoint Server 2007 – Configuration&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.microsoft.com/learning/mcp/mcts/spserver/appdev/default.mspx"&gt;MCTS: Microsoft Office SharePoint Server 2007 ― Application Development&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;WSS: Windows SharePoint Services&lt;br /&gt;&lt;br /&gt;In WSS also we have WSS Administration and WSS Application development&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.microsoft.com/learning/mcp/mcts/spservices/appdev/default.mspx"&gt;MCTS: Microsoft Windows SharePoint Services 3.0 – Application Development&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.microsoft.com/learning/mcp/mcts/spservices/config/default.mspx"&gt;MCTS: Windows SharePoint Services 3.0 – Configuration&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-9195557201409488244?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/9195557201409488244/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/02/sharepoint-certification-and-courses.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/9195557201409488244'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/9195557201409488244'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/02/sharepoint-certification-and-courses.html' title='Sharepoint Certification and Courses'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4748700785620688378.post-3893604067126382286</id><published>2009-02-06T01:44:00.001-08:00</published><updated>2009-07-12T04:05:40.273-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='English'/><title type='text'>Importance of English</title><content type='html'>&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5Cbchalla%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5Cbchalla%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5Cbchalla%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="&amp;#45;-"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman";} p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph 	{mso-style-priority:34; 	mso-style-unhide:no; 	mso-style-qformat:yes; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:0in; 	margin-left:.5in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman";} span.illinkstyle 	{mso-style-name:illinkstyle; 	mso-style-unhide:no;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-size:10.0pt; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:423887218; 	mso-list-type:hybrid; 	mso-list-template-ids:-1586445350 852683858 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	margin-left:.75in; 	text-indent:-.25in; 	mso-ansi-font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-bidi-font-family:"Times New Roman"; 	color:#660000;} @list l0:level2 	{mso-level-tab-stop:1.0in; 	mso-level-number-position:left; 	text-indent:-.25in;} @list l0:level3 	{mso-level-tab-stop:1.5in; 	mso-level-number-position:left; 	text-indent:-.25in;} @list l0:level4 	{mso-level-tab-stop:2.0in; 	mso-level-number-position:left; 	text-indent:-.25in;} @list l0:level5 	{mso-level-tab-stop:2.5in; 	mso-level-number-position:left; 	text-indent:-.25in;} @list l0:level6 	{mso-level-tab-stop:3.0in; 	mso-level-number-position:left; 	text-indent:-.25in;} @list l0:level7 	{mso-level-tab-stop:3.5in; 	mso-level-number-position:left; 	text-indent:-.25in;} @list l0:level8 	{mso-level-tab-stop:4.0in; 	mso-level-number-position:left; 	text-indent:-.25in;} @list l0:level9 	{mso-level-tab-stop:4.5in; 	mso-level-number-position:left; 	text-indent:-.25in;} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman","serif";} &lt;/style&gt; &lt;![endif]--&gt;  &lt;p class="MsoNormal"&gt;Dear friends&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;The purpose is to convey the importance of English in our daily lives.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;We are all keen about learning or speaking &lt;span class="illinkstyle"&gt;&lt;span style="font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: rgb(0, 153, 0);"&gt;ENGLISH&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;br /&gt;We all know that it’s very simple and easy for us to speak and communicate in our native languages, so we need not worry about how to speak English. &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;But our daily bread revolves around the very usage of ENGLISH as a mode of communication. Our work life demands that we be good at speaking and communicating via English.&lt;br /&gt;&lt;br /&gt;Some of the Good Institutes for Learning English are - &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoListParagraph" style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;span style=""&gt;1.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;SRI RAMAKRISHNA MATH&lt;/p&gt;  &lt;p class="MsoListParagraph" style="margin-left: 0.75in;"&gt;Address: Opp. Indira Park, Domalguda, Hyderabad – 500 029, INDIA.&lt;/p&gt;  &lt;p class="MsoListParagraph" style="margin-left: 0.75in;"&gt;Phone Number: 040-2763 5545&lt;/p&gt;  &lt;p class="MsoListParagraph" style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;span style=""&gt;2.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;MEDHA&lt;/p&gt;  &lt;p class="MsoListParagraph" style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;span style=""&gt;3.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;DIRECT ENGLISH&lt;/p&gt;  &lt;p class="MsoListParagraph" style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;span style=""&gt;4.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;RUSSELL’S SPOKEN ENGLISH&lt;/p&gt;  &lt;p class="MsoListParagraph"&gt;5.   &lt;span style="color: blue;"&gt; &lt;/span&gt;BBC Website &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;br /&gt;There are many online websites where we can listen and practice English. But the best way is to make sure that we speak English round the clock and nothing else. “Initially, may be we will be speaking incorrect/improper English, but eventually we will end up improving our language skills and this will help us.”&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4748700785620688378-3893604067126382286?l=challab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://challab.blogspot.com/feeds/3893604067126382286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://challab.blogspot.com/2009/02/importance-of-english.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/3893604067126382286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4748700785620688378/posts/default/3893604067126382286'/><link rel='alternate' type='text/html' href='http://challab.blogspot.com/2009/02/importance-of-english.html' title='Importance of English'/><author><name>vijayabhaskar challa</name><uri>http://www.blogger.com/profile/14476991266120219463</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_VFZWnoLQbic/SYwDvcj-nRI/AAAAAAAAABA/sCNLwgPX8b4/S220/20122008(002).jpg'/></author><thr:total>0</thr:total></entry></feed>
