<?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-590014885193399995</id><updated>2011-10-03T08:47:28.073-07:00</updated><title type='text'>Myworld.com</title><subtitle type='html'>Hi i am Brahmam</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-5675474433647158930</id><published>2010-10-29T23:14:00.000-07:00</published><updated>2011-01-25T00:54:46.722-08:00</updated><title type='text'>SilverLight</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Silverlight and the layout management. (Grid, Canvas, StackPanel or ?)&lt;br /&gt;&lt;/span&gt;&lt;p&gt;If you have done any Silverlight development, then you are familiar with the Canvas, the Grid and the StackPanel. &lt;/p&gt; &lt;p&gt;All 3 containers are unique in their own way. But they all have some limitations/drawbacks. Let's see:&lt;/p&gt;&lt;p&gt;&lt;b&gt;1: The Canvas:&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;Canvas Background="Blue"&amp;gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;   &amp;lt;TextBlock Height="50" Width="50" Canvas.Left="15" Canvas.Top="15" /&amp;gt;&lt;br /&gt;&amp;lt;/Canvas&amp;gt;&lt;br /&gt;&lt;/p&gt;I don't want to pixelate my items.&lt;br /&gt;&lt;p&gt;&lt;b&gt;2: The StackPanel:&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&amp;lt;StackPanel&amp;gt;&lt;br /&gt;&amp;lt;TextBlock Height="50" Width="50" /&amp;gt;&lt;br /&gt;&lt;p&gt; &amp;lt;TextBlock Height="50" Width="50" /&amp;gt;&lt;br /&gt;&lt;/p&gt;&amp;lt;/StackPanel&amp;gt;&lt;br /&gt;&lt;p&gt;Just not rich enough to do any complex layouts.&lt;br /&gt;&lt;/p&gt;&lt;b&gt;3: The Grid:&lt;/b&gt;&lt;br /&gt;&amp;lt;Grid Background="Silver"&amp;gt;&lt;br /&gt;&lt;p&gt; &amp;lt;Grid.ColumnDefinitions&amp;gt;&lt;br /&gt;   &amp;lt;ColumnDefinition Width="*2" /&amp;gt;&lt;br /&gt;   &amp;lt;ColumnDefinition Width="*1" /&amp;gt;&lt;br /&gt;&amp;lt;/Grid.ColumnDefinitions&amp;gt;&lt;br /&gt;&amp;lt;Grid.RowDefinitions&amp;gt;&lt;br /&gt;   &amp;lt;RowDefinition Height="50" /&amp;gt;&lt;br /&gt;   &amp;lt;RowDefinition Height="100" /&amp;gt;&lt;br /&gt;&amp;lt;/Grid.RowDefinitions&amp;gt;&lt;br /&gt;&lt;/p&gt;&amp;lt;TextBlock Height="50" Width="50" Grid.Row="1" Grid.Column="1"/&amp;gt;&lt;br /&gt;&lt;p&gt;&amp;lt;/Grid&amp;gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;I don't want to pixelate my items.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Yes, I can define a very complex layout using the Grid. But I am still required to place my items inside "a" cell by specifying&lt;br /&gt;&lt;/p&gt;the Grid.Row and Grid.Column attributes on each individual item. I also need to decide, how may rows and columns my page has.&lt;br /&gt;&lt;p&gt;This just does not feel natural.&lt;br /&gt;&lt;/p&gt;To address this, Developer Express is working on a special LayoutControl container that will eliminate these hassles. All you have to do is specify where you want&lt;br /&gt;&lt;p&gt;your items placed. Left, Right, Top or Bottom. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&amp;lt;DockedLayoutControl x:Name="layoutItems" DockedLayoutControl.Dock="Client"&amp;gt;&lt;br /&gt;           &amp;lt;TextBlock Text="My Top Text" DockedLayoutControl.Dock="Left"/&amp;gt;&lt;br /&gt;           &amp;lt;TextBlock Text="My Bottom Text" DockedLayoutControl.Dock="Bottom"/&amp;gt;&lt;br /&gt;&amp;lt;/DockedLayoutControl&amp;gt;&lt;br /&gt;&lt;/p&gt;Here is a screen shot of a layout done using a DockedLayoutControl.&lt;br /&gt;&lt;br /&gt;Just not rich enough to do any complex layouts.&lt;br /&gt;&lt;grid background="Silver"&gt;&lt;grid.columndefinitions&gt;&lt;columndefinition width="*2"&gt;&lt;grid.rowdefinitions&gt;&lt;rowdefinition height="50"&gt;&lt;br /&gt;&lt;br /&gt;the Grid.Row and Grid.Column attributes on each individual item. I also need to decide, how may rows and columns my page has.&lt;br /&gt;&lt;br /&gt;This just does not feel natural.&lt;br /&gt;&lt;br /&gt;To address this, Developer Express is working on a special LayoutControl container that will eliminate these hassles. All you have to do is specify where you want&lt;br /&gt;&lt;br /&gt;your items placed. Left, Right, Top or Bottom.&lt;dockedlayoutcontrol name="layoutItems" dock="Client"&gt;&lt;textblock text="My Top Text" dock="Left"&gt;&lt;textblock text="My Bottom Text" dock="Bottom"&gt;&lt;br /&gt;&lt;/textblock&gt;&lt;br /&gt;&lt;br /&gt;Here is a screen shot of a layout done using a DockedLayoutControl.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/textblock&gt;&lt;/dockedlayoutcontrol&gt;&lt;/rowdefinition&gt;&lt;/grid.rowdefinitions&gt;&lt;/columndefinition&gt;&lt;/grid.columndefinitions&gt;&lt;/grid&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="sharepoint2011"&gt;Tweet&lt;/a&gt;&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-5675474433647158930?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/5675474433647158930/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=5675474433647158930' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/5675474433647158930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/5675474433647158930'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2010/10/silverlight.html' title='SilverLight'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-3801421121649313998</id><published>2009-07-09T23:11:00.000-07:00</published><updated>2011-02-02T03:34:28.711-08:00</updated><title type='text'>FAQS</title><content type='html'>&lt;span style="color: rgb(51, 51, 0); font-weight: bold;font-size:180%;" &gt;&lt;span style="color: rgb(0, 51, 51);"&gt;ASP.NET:&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 255, 0);"&gt;&lt;br /&gt;&lt;br /&gt;1.The page cannot be found" Error With ASP.NET On Windows Server 2003?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;When you have installed ASP.NET on Windows Server 2003, you may receive the following 404 - Page Not Found error:&lt;br /&gt;&lt;br /&gt;The normal html pages can be accessed normally but the aspx pages will give this error. Visual studio.net 2005 has inbuilt server hence you would normally not face this issue since you would not really be using IIS. But in case you deploy the application in IIS and try accessing the application using the localhost or 127.0.0.1, you are bound to find this error.&lt;br /&gt;&lt;br /&gt;This error is caused as the IIS 6 disallows the ASP.NET 2.0 Web Service Extension. To fix this, follow these steps:&lt;br /&gt;&lt;br /&gt;Open up the Internet Information Services (IIS) Manager (which you find under Administrative Tools)&lt;br /&gt;&lt;br /&gt;Expand your server&lt;br /&gt;&lt;br /&gt;Select Web Service Extensions&lt;br /&gt;&lt;br /&gt;In the right hand pane, click ASP&lt;span&gt;।&lt;/span&gt;NET v2.0.50727 (or a later version number) and then click the Allow button.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Follow the Below Images:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/SlbjutuUbpI/AAAAAAAAAG0/WFZG9dEwqj8/s1600-h/IIS.bmp"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 361px; height: 400px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/SlbjutuUbpI/AAAAAAAAAG0/WFZG9dEwqj8/s400/IIS.bmp" alt="" id="BLOGGER_PHOTO_ID_5356719198491143826" border="0" /&gt;&lt;/a&gt;These images give you the clarity.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="font-weight: bold;"&gt;WebServices:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 255, 0); font-weight: bold;"&gt;&lt;br /&gt;Why WebService Access Denied?&lt;/span&gt;&lt;br /&gt;The .NET Framework 1.1 defines a new protocol that is named HttpPostLocalhost. By default, this new protocol is enabled. This protocol permits invoking Web services that use HTTP POST requests from applications on the same computer. This is true provided the POST URL uses http://localhost, not http://hostname. This permits Web service developers to use the HTML-based test form to invoke the Web service from the same computer where the Web service resides.&lt;br /&gt;&lt;br /&gt;When you try to access the Web service from a remote computer you do not see the Invoke button. And, you receive the following error message:&lt;br /&gt;&lt;br /&gt;The test form is only available for requests from the local machine&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;Solution:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;--&gt;&gt; Web.config file level &lt;&lt;--&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;HTTP GET and HTTP POST may be enabled by editing the Web.config file for the vroot where the Web service resides. The following configuration enables both HTTP GET and HTTP POST:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/SsX2uYeTzpI/AAAAAAAAAIA/ySMSdlXcUhA/s1600-h/webconfig.bmp"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 129px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/SsX2uYeTzpI/AAAAAAAAAIA/ySMSdlXcUhA/s400/webconfig.bmp" alt="" id="BLOGGER_PHOTO_ID_5387983805922659986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;--&gt;&gt; Machine.config File Level &lt;&lt;--&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Alternatively, you can enable these protocols for all Web services on the computer by editing the &lt;protocols&gt; section in Machine.config. The following example enables HTTP GET, HTTP POST, and also SOAP and HTTP POST from localhost:&lt;br /&gt;&lt;protocols&gt;&lt;protocols&gt;&lt;add name="HttpSoap"&gt;&lt;add name="HttpPost"&gt;&lt;add name="HttpGet"&gt;&lt;add name="HttpPostLocalhost"&gt;&lt;add name="Documentation"&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/protocols&gt;&lt;/protocols&gt;&lt;/protocols&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/SsX3GKTILdI/AAAAAAAAAII/vj9SQq7S0OA/s1600-h/machineconfig.bmp"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 129px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/SsX3GKTILdI/AAAAAAAAAII/vj9SQq7S0OA/s400/machineconfig.bmp" alt="" id="BLOGGER_PHOTO_ID_5387984214434524626" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;protocols&gt;&lt;protocols&gt;&lt;protocols&gt;&lt;add name="HttpSoap"&gt;&lt;add name="HttpPost"&gt;&lt;add name="HttpGet"&gt;&lt;add name="HttpPostLocalhost"&gt;&lt;add name="Documentation"&gt;&lt;/add&gt;&lt;add name="HttpSoap"&gt;&lt;add name="HttpPost"&gt;&lt;add name="HttpGet"&gt;&lt;add name="HttpPostLocalhost"&gt;&lt;add name="Documentation"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/add&gt;&lt;/protocols&gt;&lt;/protocols&gt;&lt;/protocols&gt;&lt;span style="color: rgb(255, 255, 0); font-weight: bold;"&gt;How to Use transactions with LINQ-to-SQL?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To use TransactionScope  first we have to add a reference to System.Transactions like below.&lt;br /&gt;&lt;img style="float: left; margin: 0pt 10px 10px 0pt; cursor: pointer; width: 400px; height: 334px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/TTkVijA-d0I/AAAAAAAAAXg/nwArwEnbVaM/s400/Transaction.bmp" alt="" id="BLOGGER_PHOTO_ID_5564502497852028738" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;After adding the transaction we need to drag and drop the tables into Linq-To-SQL Classes it will create entities for that. Below is the code for transaction scope to use mange transaction with Linq Context.&lt;br /&gt;After adding the transaction we need to drag and drop the tables into Linq-To-SQL Classes it will create entities for that. Below is the code for transaction scope to use mange transaction with Linq Context.&lt;br /&gt;&lt;br /&gt;using (&lt;span style="color: rgb(192, 192, 192);"&gt;EmployeeRegistrationDataContext &lt;/span&gt;db = new &lt;span style="color: rgb(192, 192, 192);"&gt;EmployeeRegistrationDataContext&lt;/span&gt;())&lt;br /&gt;{&lt;br /&gt;using (&lt;span style="color: rgb(192, 192, 192);"&gt;TransactionScope &lt;/span&gt;Tran = &lt;span style="color: rgb(0, 0, 0);"&gt;new &lt;/span&gt;&lt;span style="color: rgb(192, 192, 192);"&gt;TransactionScope&lt;/span&gt;(&lt;span style="color: rgb(192, 192, 192);"&gt;TransactionScopeOption&lt;/span&gt;.Required))&lt;br /&gt;{&lt;br /&gt;dbtblemployeeDetails.InsertOnSubmit(objemployeeDetails);&lt;br /&gt;dbtblempAddress.InsertOnSumbit(ObjempAddress);&lt;br /&gt;db.SubmitChanges();&lt;br /&gt;&lt;br /&gt;Tran.Complete();//indicates that all operations within the scope are completed successfully.&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;It will commit transaction only if using blocks will run successfully.&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-3801421121649313998?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/3801421121649313998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=3801421121649313998' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/3801421121649313998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/3801421121649313998'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2009/07/faqs.html' title='FAQS'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_-xYNrJLlXPY/SlbjutuUbpI/AAAAAAAAAG0/WFZG9dEwqj8/s72-c/IIS.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-718068713301001438</id><published>2009-06-26T01:47:00.000-07:00</published><updated>2009-10-09T02:18:40.599-07:00</updated><title type='text'>About Me</title><content type='html'>&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 173px; height: 300px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/SkSLvExurwI/AAAAAAAAAGk/vNZqFlG6lk4/s400/IMG_0430.jpg" alt="" id="BLOGGER_PHOTO_ID_5351555898075426562" border="0" /&gt;Hi, i am Brahmam and I write C#.Net,ASP.Net and C# Console Applications Samples and Problem Solving. This is useful who have interest in Microsoft .Net and MSSQL. I am very eager to Learn New things in Dot Net. I am always ready to discus things in dot net.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;My Hobbies:&lt;/span&gt;&lt;br /&gt;A person needs some activity to keep themselves involved - and something interesting or fun makes it more pleasant too! Crafts and great hobbies promise this. With today’s stressful lifestyles, it’s important to have time, that you take, to do something just for the fun of it. Not only can a hobby be fun, some can even relieve stress.&lt;br /&gt;&lt;br /&gt;* Reading Books&lt;br /&gt;* Listening Music&lt;br /&gt;* Dancing&lt;br /&gt;* Making Good Friends&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Contact Me:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Brahmaiah Koduri&lt;/span&gt;&lt;br /&gt;Software Engineer/ Cigniti, Hyd,India,&lt;br /&gt;brahmam@cigniti.com,brahmam.04@gmail.com,&lt;br /&gt;Cigniti Software Services(P) Ltd,&lt;br /&gt;Module 1 Q 3-A3,&lt;br /&gt;1st floor, Cyber Towers,&lt;br /&gt;HITEC CITY, Madhapur,&lt;br /&gt;Hyderabad-500 081.&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-718068713301001438?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/718068713301001438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=718068713301001438' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/718068713301001438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/718068713301001438'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2009/06/about-me.html' title='About Me'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_-xYNrJLlXPY/SkSLvExurwI/AAAAAAAAAGk/vNZqFlG6lk4/s72-c/IMG_0430.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-2278065227384854424</id><published>2009-05-27T23:26:00.000-07:00</published><updated>2009-06-24T21:20:09.378-07:00</updated><title type='text'>web</title><content type='html'>&lt;a href="http://www.blogger.com/post-edit.g?blogID=590014885193399995&amp;amp;postID=2278065227384854424#"&gt;&lt;img src="http://us.123rf.com/400wm/400/400/andresr/andresr0901/andresr090100091/4145765.jpg" alt="business woman and her team isolated on white photo" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_-xYNrJLlXPY/SkL63MYI-oI/AAAAAAAAAGU/3jY9tgoedjo/s1600-h/71293261oPGtAL_fs.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 267px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/SkL63MYI-oI/AAAAAAAAAGU/3jY9tgoedjo/s400/71293261oPGtAL_fs.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5351115133391796866" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/SkL6OyM3EkI/AAAAAAAAAGM/zJDo4hhQ0sk/s1600-h/this-rose.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 369px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/SkL6OyM3EkI/AAAAAAAAAGM/zJDo4hhQ0sk/s400/this-rose.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5351114439170396738" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-2278065227384854424?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/2278065227384854424/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=2278065227384854424' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/2278065227384854424'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/2278065227384854424'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2009/05/web.html' title='web'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_-xYNrJLlXPY/SkL63MYI-oI/AAAAAAAAAGU/3jY9tgoedjo/s72-c/71293261oPGtAL_fs.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-7135251507931879329</id><published>2009-05-27T04:13:00.000-07:00</published><updated>2010-11-30T09:09:23.442-08:00</updated><title type='text'>Gallery</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/StawbT1lEyI/AAAAAAAAAJY/O_m4_HCEi3E/s1600-h/SDC10852.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/StawbT1lEyI/AAAAAAAAAJY/O_m4_HCEi3E/s400/SDC10852.JPG" alt="" id="BLOGGER_PHOTO_ID_5392691587050705698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_-xYNrJLlXPY/Stawa0D2WLI/AAAAAAAAAJQ/r74lBPXg74g/s1600-h/SDC10797.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_-xYNrJLlXPY/Stawa0D2WLI/AAAAAAAAAJQ/r74lBPXg74g/s400/SDC10797.JPG" alt="" id="BLOGGER_PHOTO_ID_5392691578520623282" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_-xYNrJLlXPY/StavK3zldhI/AAAAAAAAAJA/bQGqPax5CHQ/s1600-h/SDC10832.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/StavK3zldhI/AAAAAAAAAJA/bQGqPax5CHQ/s400/SDC10832.JPG" alt="" id="BLOGGER_PHOTO_ID_5392690205136614930" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/Staun5uMjjI/AAAAAAAAAI4/96bbi9zno_c/s1600-h/SDC10821.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/Staun5uMjjI/AAAAAAAAAI4/96bbi9zno_c/s400/SDC10821.JPG" alt="" id="BLOGGER_PHOTO_ID_5392689604355460658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/StatC62AmuI/AAAAAAAAAIo/p7j_822jpCE/s1600-h/SDC10749.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/StatC62AmuI/AAAAAAAAAIo/p7j_822jpCE/s400/SDC10749.JPG" alt="" id="BLOGGER_PHOTO_ID_5392687869489879778" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/Stat0KqThiI/AAAAAAAAAIw/U8fqWmG3rxE/s1600-h/SDC10754.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/Stat0KqThiI/AAAAAAAAAIw/U8fqWmG3rxE/s400/SDC10754.JPG" alt="" id="BLOGGER_PHOTO_ID_5392688715549345314" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_-xYNrJLlXPY/Stay21PpzkI/AAAAAAAAAJ4/k8hhCzX_0p4/s1600-h/01102009090.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 300px; height: 400px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/Stay21PpzkI/AAAAAAAAAJ4/k8hhCzX_0p4/s400/01102009090.jpg" alt="" id="BLOGGER_PHOTO_ID_5392694258898161218" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/Sta2KX4tcBI/AAAAAAAAAKg/GtruaCjVJtQ/s1600-h/01102009083.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/Sta2KX4tcBI/AAAAAAAAAKg/GtruaCjVJtQ/s400/01102009083.jpg" alt="" id="BLOGGER_PHOTO_ID_5392697893149569042" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_-xYNrJLlXPY/Sta2Jp8agOI/AAAAAAAAAKY/Oo8zEd5TaiI/s1600-h/01102009087.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/Sta2Jp8agOI/AAAAAAAAAKY/Oo8zEd5TaiI/s400/01102009087.jpg" alt="" id="BLOGGER_PHOTO_ID_5392697880817074402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_-xYNrJLlXPY/Sta2JHbQf_I/AAAAAAAAAKQ/beqQXobzfN4/s1600-h/20092009073.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 300px; height: 400px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/Sta2JHbQf_I/AAAAAAAAAKQ/beqQXobzfN4/s400/20092009073.jpg" alt="" id="BLOGGER_PHOTO_ID_5392697871551201266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_-xYNrJLlXPY/Sta2Ijv_sYI/AAAAAAAAAKI/SZkIN8PMoP0/s1600-h/20092009072.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_-xYNrJLlXPY/Sta2Ijv_sYI/AAAAAAAAAKI/SZkIN8PMoP0/s400/20092009072.jpg" alt="" id="BLOGGER_PHOTO_ID_5392697861974503810" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/StaykhztN0I/AAAAAAAAAJw/KWH1YBLbjRA/s1600-h/01102009084.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/StaykhztN0I/AAAAAAAAAJw/KWH1YBLbjRA/s400/01102009084.jpg" alt="" id="BLOGGER_PHOTO_ID_5392693944443025218" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_-xYNrJLlXPY/StaykNyEFuI/AAAAAAAAAJo/Ybh3DVj4We8/s1600-h/01102009081.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/StaykNyEFuI/AAAAAAAAAJo/Ybh3DVj4We8/s400/01102009081.jpg" alt="" id="BLOGGER_PHOTO_ID_5392693939067426530" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/Sta1ku5BhyI/AAAAAAAAAKA/FHOJFwwRzME/s1600-h/20092009063.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/Sta1ku5BhyI/AAAAAAAAAKA/FHOJFwwRzME/s400/20092009063.jpg" alt="" id="BLOGGER_PHOTO_ID_5392697246489872162" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/StayjhdlpaI/AAAAAAAAAJg/F3I_zYwqvTc/s1600-h/27092009022.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/StayjhdlpaI/AAAAAAAAAJg/F3I_zYwqvTc/s400/27092009022.jpg" alt="" id="BLOGGER_PHOTO_ID_5392693927170385314" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_-xYNrJLlXPY/Sol_p_taQYI/AAAAAAAAAHE/1jIKw6RV_BQ/s1600-h/mothers-day-flowers.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-7135251507931879329?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/7135251507931879329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=7135251507931879329' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/7135251507931879329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/7135251507931879329'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2009/05/gallery.html' title='Gallery'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_-xYNrJLlXPY/StawbT1lEyI/AAAAAAAAAJY/O_m4_HCEi3E/s72-c/SDC10852.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-3797309445947576455</id><published>2009-05-26T22:07:00.000-07:00</published><updated>2009-11-30T20:56:41.861-08:00</updated><title type='text'>I Love C# Language............</title><content type='html'>&lt;div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:Arial,Helvetica;font-size:larger;"  &gt;What is C#?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana,Arial,Helvetica;"&gt;&lt;p&gt;    C# is a new language created by Microsoft.&lt;br /&gt;This new language was created by a team of people at Microsoft led by Anders Hejlsberg.C# is a powerful and flexible programming language. Like all programming languages, it can be used to create a variety of applications. Your potential with C# is limited only by your imagination. The language does not place constraints on what you can do. C# has already been used for projects as diverse as dynamic Web sites, development tools, and even compilers.&lt;span style="font-family:Verdana,Arial,Helvetica;"&gt;C# was created as an object-oriented programming (OOP) language. Other programming languages include object-oriented features, but very few are fully object-oriented.&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;span style="font-weight: bold;font-family:Arial,Helvetica;font-size:larger;"  &gt;Why C#?&lt;/span&gt;&lt;p&gt;Many people believed that there was no need for a new programming language. Java, C++, Perl, Microsoft Visual Basic, and other existing languages were believed to offer all the functionality needed.&lt;br /&gt;C# is a language derived from C and C++, but it was created from the ground up. Microsoft started with what worked in C and C++ and included new features that would make these languages easier to use. Many of these features are very similar to what can be found in Java. Ultimately, Microsoft had a number of objectives when building the language.&lt;/p&gt;&lt;span style="font-weight: bold;font-family:Arial,Helvetica;font-size:larger;"  &gt;C# Is Modern&lt;/span&gt; &lt;p&gt;&lt;span style="font-family:Verdana,Arial,Helvetica;"&gt;What makes a modern language? Features such as exception handling, garbage collection, extensible data types, and code security are features that are expected in a modern language. C# contains all of these.&lt;/span&gt;&lt;/p&gt;&lt;span style="font-weight: bold;font-family:Arial,Helvetica;font-size:larger;"  &gt;C# Is Object-Oriented&lt;/span&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="font-family:Verdana,Arial,Helvetica;"&gt;The keys to an object-oriented language are encapsulation, inheritance, and polymorphism. C# supports all of these. &lt;i&gt;Encapsulation&lt;/i&gt; is the placing of functionality into a single package. &lt;i&gt;Inheritance&lt;/i&gt; is a structured way of extending existing code and functionality into new programs and packages. &lt;i&gt;Polymorphism&lt;/i&gt; is the capability of adapting to what needs to be done. Understand, these are very simplistic definitions. The implementation of these is a bit more complicated.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&lt;span style="font-weight: bold;font-family:Arial,Helvetica;font-size:larger;"  &gt;Some  C# Keywords:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;abstract   as         base     bool      break&lt;br /&gt;byte       case       catch    char      checked&lt;br /&gt;class      const      continue decimal   default&lt;br /&gt;delegate   do         double   else      enum&lt;br /&gt;event      explicit   extern   false     finally&lt;br /&gt;fixed      float      for      foreach&lt;br /&gt;goto       if         implicit in        int&lt;br /&gt;interface  internal   is       lock      long&lt;br /&gt;namespace  new        null     object   operator&lt;br /&gt;out        override   params   private  protected&lt;br /&gt;public     readonly   ref      return   sbyte&lt;br /&gt;sealed     short      sizeof   stackalloc&lt;br /&gt;static     string     struct   switch   this&lt;br /&gt;throw      true       try      typeof   uint&lt;br /&gt;ulong      unchecked  unsafe   ushort   using&lt;br /&gt;virtual     void      while &lt;/pre&gt;&lt;br /&gt;&lt;div style="font-weight: bold;"&gt;Some Topics in C#&lt;/div&gt;&lt;br /&gt;&lt;a href="http://docs.google.com/Doc?id=ddqz222p_4nkbws9cf" target="_blank"&gt; Loops in C#.Net&lt;/a&gt;&lt;br /&gt;&lt;a href="http://docs.google.com/Doc?docid=ddqz222p_16hj9ncmf8&amp;amp;hl=en" target="_blank"&gt; Garbage Collection&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;..........................................&lt;br /&gt;..........................................&lt;br /&gt;Valuable E-Books&lt;a href="http://www.mediafire.com/chjagadish" target="_blank"&gt; &lt;span style="font-weight: bold;"&gt;Down Load Now&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="color: rgb(255, 204, 0); font-weight: bold;font-family:georgia;" &gt;Caching in asp.net 3.5&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Types Of Chaching:&lt;br /&gt;&lt;span&gt;ASP.NET has several kinds of caching that can be used by Web applications:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Output Caching:&lt;/span&gt; Output caching is useful when the contents of an entire page can be cached. While a page is cached by the output cache, subsequent requests for that page are served from the output page without executing the code that created it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Fragment Caching:&lt;/span&gt; Sometimes it is not practical to cache an entire page - perhaps portions of the page must be created or customized for each request. In this case, it is often worthwhile to identify objects or data that are expensive to construct and are eligible for caching. Once these items are identified, they can be created once and then cached for some period of time. Additionally, fragment caching can be used to cache regions of a page's output.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Data Caching:&lt;/span&gt; Data caching is storing data in memory for quick access. Typically information that is costly to obtain (in terms of performance) is stored in the cache. One of the more common items stored in a cache is commonly displayed database values; by caching such information, rather than relying on repeated database calls, the demand on the Web server and database server's system resources are decreased and the Web application's scalability increased. The cache items can be given an expiration policy that causes them to be removed from the cache when they have expired. Code that accesses the cache item simply checks for the absence of the item and recreates it, if necessary.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-3797309445947576455?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/3797309445947576455/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=3797309445947576455' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/3797309445947576455'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/3797309445947576455'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2009/05/i-love-c-language.html' title='I Love C# Language............'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-5262108327631561628</id><published>2009-05-21T22:32:00.001-07:00</published><updated>2009-11-16T01:14:47.430-08:00</updated><title type='text'>Learn More From People</title><content type='html'>&lt;ul&gt;&lt;li&gt;God helps those who help themselves&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;God only helps those people who work hard and make an honest effort.&lt;/p&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;"HELP EVER HURT NEVER"&amp;amp;"IMPOSSIBLE AS POSSIBLE"&lt;br /&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Empty vessels make the most noise&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Those people who have a little knowledge usually talk the most and make the greatest fuss.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;A rolling stone gathers no moss&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;A person who never settles in one place or who often changes his job will not succeed in life ; one who is always changing his mind will never get anything done.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Actions speak louder than words&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Children usually learn more from the examples set by their elders than from what they are told ; a person's character is judged by the thing she does and not by what he says; actions give evidence or proof of.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-5262108327631561628?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/5262108327631561628/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=5262108327631561628' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/5262108327631561628'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/5262108327631561628'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2009/05/learn-more-from-people.html' title='Learn More From People'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-590014885193399995.post-2507955558309351133</id><published>2009-05-21T21:58:00.000-07:00</published><updated>2011-07-05T02:04:53.666-07:00</updated><title type='text'>My Friends</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/SkSMVAoBZBI/AAAAAAAAAGs/HV0mjMboUIc/s1600-h/IMG_0436.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/SkSMVAoBZBI/AAAAAAAAAGs/HV0mjMboUIc/s400/IMG_0436.jpg" title="Pankaj Kumar(Manager)" id="BLOGGER_PHOTO_ID_5351556549795996690" border="0" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_-xYNrJLlXPY/SmqpOnF2epI/AAAAAAAAAG8/PGOYN2NSpoo/s1600-h/DSCN0226.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/SmqpOnF2epI/AAAAAAAAAG8/PGOYN2NSpoo/s400/DSCN0226.JPG" title=" Balakrishna(Balu)" id="BLOGGER_PHOTO_ID_5362284374814784146" border="0" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_-xYNrJLlXPY/SidWaByj6WI/AAAAAAAAAFk/SWvji3Foe2I/s1600-h/chaitu1.bmp"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 370px; height: 337px;" src="http://1.bp.blogspot.com/_-xYNrJLlXPY/SidWaByj6WI/AAAAAAAAAFk/SWvji3Foe2I/s400/chaitu1.bmp" title=" Chaitanya(Chanti)" id="BLOGGER_PHOTO_ID_5343334488055474530" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_-xYNrJLlXPY/Stao9HZ1fUI/AAAAAAAAAIY/V2AX-cHS7sc/s1600-h/SDC10757.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_-xYNrJLlXPY/Stao9HZ1fUI/AAAAAAAAAIY/V2AX-cHS7sc/s400/SDC10757.JPG" title=" Hari,SriHarsha,Sagar" id="BLOGGER_PHOTO_ID_5392683371735645506" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/StapaPUiuNI/AAAAAAAAAIg/83KFJvuy8i0/s1600-h/SDC10758.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/StapaPUiuNI/AAAAAAAAAIg/83KFJvuy8i0/s400/SDC10758.JPG" title=" Sagar, Chandu" id="BLOGGER_PHOTO_ID_5392683872077134034" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/Stam07t8h-I/AAAAAAAAAIQ/0aBF_W5b2w8/s1600-h/SDC10746.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/Stam07t8h-I/AAAAAAAAAIQ/0aBF_W5b2w8/s400/SDC10746.JPG" title=" Sagar" id="BLOGGER_PHOTO_ID_5392681032136558562" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_-xYNrJLlXPY/SiZriUYGPWI/AAAAAAAAAFU/-kzuXz7pVtU/s1600-h/IMG_0368.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/SiZriUYGPWI/AAAAAAAAAFU/-kzuXz7pVtU/s400/IMG_0368.JPG" title=" SriGanesh,Venkata Narayana." id="BLOGGER_PHOTO_ID_5343076245251177826" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/SiZrh7aPu7I/AAAAAAAAAFM/6saeJMdDJ80/s1600-h/IMG_0360.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/SiZrh7aPu7I/AAAAAAAAAFM/6saeJMdDJ80/s400/IMG_0360.JPG" title=" Sekar, Nalini Kumar" id="BLOGGER_PHOTO_ID_5343076238549302194" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_-xYNrJLlXPY/ShY2Gvqk4hI/AAAAAAAAADk/1d4nm2Z4yrU/s1600-h/IMG_0101.JPG"&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_-xYNrJLlXPY/ShY2G_QInqI/AAAAAAAAADs/Op6OoVY9Od0/s1600-h/IMG_0125.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5338513901980524194" style="margin: 0px 10px 10px 0px; float: left; width: 400px; height: 300px;" title="Sekar Gajavally" src="http://4.bp.blogspot.com/_-xYNrJLlXPY/ShY2G_QInqI/AAAAAAAAADs/Op6OoVY9Od0/s400/IMG_0125.JPG" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_-xYNrJLlXPY/ShY2Gvqk4hI/AAAAAAAAADk/1d4nm2Z4yrU/s1600-h/IMG_0101.JPG"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/Sta7q5EHxAI/AAAAAAAAAK4/_ApEeXC6aDI/s1600-h/Photo276.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 240px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/Sta7q5EHxAI/AAAAAAAAAK4/_ApEeXC6aDI/s400/Photo276.jpg" title="Hari" id="BLOGGER_PHOTO_ID_5392703949369754626" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_-xYNrJLlXPY/Sta7bCkhunI/AAAAAAAAAKw/lXM5wWeZwJY/s1600-h/Photo281.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 240px;" src="http://2.bp.blogspot.com/_-xYNrJLlXPY/Sta7bCkhunI/AAAAAAAAAKw/lXM5wWeZwJY/s400/Photo281.jpg" title=" Trinath" id="BLOGGER_PHOTO_ID_5392703677043686002" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_-xYNrJLlXPY/Sta6a8F3cEI/AAAAAAAAAKo/VOIHiK0Glqw/s1600-h/SDC10827.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_-xYNrJLlXPY/Sta6a8F3cEI/AAAAAAAAAKo/VOIHiK0Glqw/s400/SDC10827.JPG" title="Satish, NaliniKumar" id="BLOGGER_PHOTO_ID_5392702575792844866" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_-xYNrJLlXPY/S014G51_DqI/AAAAAAAAALI/NzKbHznYcjk/s1600-h/narayan4.jpg"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;h7&gt;&lt;span style="color: rgb(255, 204, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h7&gt;&lt;br /&gt;&lt;h7&gt;&lt;br /&gt;&lt;/h7&gt;&lt;a href="http://2.bp.blogspot.com/_-xYNrJLlXPY/S014G51_DqI/AAAAAAAAALI/NzKbHznYcjk/s1600-h/narayan4.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_-xYNrJLlXPY/S014G51_DqI/AAAAAAAAALI/NzKbHznYcjk/s400/narayan4.jpg" title="Narayana Buddha(Kali)" id="BLOGGER_PHOTO_ID_5426125186053115554" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Hello Comming&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/590014885193399995-2507955558309351133?l=brahmamkoduri.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brahmamkoduri.blogspot.com/feeds/2507955558309351133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=590014885193399995&amp;postID=2507955558309351133' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/2507955558309351133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/590014885193399995/posts/default/2507955558309351133'/><link rel='alternate' type='text/html' href='http://brahmamkoduri.blogspot.com/2009/05/my-friends.html' title='My Friends'/><author><name>Brahmam</name><uri>http://www.blogger.com/profile/05918127641450112678</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/_-xYNrJLlXPY/TTVGFHay_dI/AAAAAAAAAWk/GxZrtVkVsJ4/S220/IMG0140A.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_-xYNrJLlXPY/SkSMVAoBZBI/AAAAAAAAAGs/HV0mjMboUIc/s72-c/IMG_0436.jpg' height='72' width='72'/><thr:total>13</thr:total></entry></feed>
