<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DEMAQHYyeCp7ImA9WhRRFE4.&quot;"><id>tag:blogger.com,1999:blog-3195677141927528252</id><updated>2011-11-27T15:27:21.890-08:00</updated><title>Ridihima.Anil.Sareen</title><subtitle type="html">“Software is like entropy. It is difficult to grasp, weighs nothing, and obeys the second law of thermodynamics, i.e. it always increases.”</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://ridihima.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://ridihima.blogspot.com/" /><author><name>Ridihima.A.Sareen</name><uri>http://www.blogger.com/profile/10038909147345563036</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://1.bp.blogspot.com/_4Otw-Gh4QJg/S5-L84EUqGI/AAAAAAAAAAY/S22JiLXHKwM/S220/DSC01199.JPG" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/Ridihimaanilsareen" /><feedburner:info uri="ridihimaanilsareen" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CkYFQ3k_eSp7ImA9WxFWF08.&quot;"><id>tag:blogger.com,1999:blog-3195677141927528252.post-6762320161447088634</id><published>2010-06-04T23:41:00.000-07:00</published><updated>2010-06-04T23:41:52.741-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-04T23:41:52.741-07:00</app:edited><title>Google Sitemap with Asp.Net C#</title><content type="html">Step 1: Get a Google account&lt;br /&gt;
Step 2: Login to &lt;a href="http://www.google.com/webmasters/sitemaps" title="http://www.google.com/webmasters/sitemaps"&gt;http://www.google.com/webmasters/sitemaps&lt;/a&gt;&lt;br /&gt;
Step 3: Add a website&lt;br /&gt;
Step 4: Verify that you are the owner  by uploading an HTML file or add a Meta tag&lt;br /&gt;
Step 5: Add a  sitemap for that website&lt;br /&gt;
&lt;br /&gt;
Class will be as follows :&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: csharp"&gt;using System;
using System.Xml;

namespace shop.BLL.Utility
{
    public class SiteMapFeedGenerator
    {
        XmlTextWriter writer;

        public SiteMapFeedGenerator(System.IO.Stream stream, System.Text.Encoding encoding)
        {
            writer = new XmlTextWriter(stream, encoding);
            writer.Formatting = Formatting.Indented;
        }

        public SiteMapFeedGenerator(System.IO.TextWriter w)
        {
            writer = new XmlTextWriter(w);
            writer.Formatting = Formatting.Indented;
        }
        /// &lt;summary&gt;

        /// Writes the beginning of the SiteMap document
        /// &lt;/summary&gt;
        public void WriteStartDocument()
        {
            writer.WriteStartDocument();
            writer.WriteStartElement(&amp;quot;urlset&amp;quot;);

            writer.WriteAttributeString(&amp;quot;xmlns&amp;quot;, &amp;quot;http://www.google.com/schemas/sitemap/0.84&amp;quot;);
        }

        /// &lt;summary&gt;
        /// Writes the end of the SiteMap document
        /// &lt;/summary&gt;
        public void WriteEndDocument()
        {
            writer.WriteEndElement();
            writer.WriteEndDocument();
        }

        /// &lt;summary&gt;

        /// Closes this stream and the underlying stream
        /// &lt;/summary&gt;
        public void Close()
        {
            writer.Flush();
            writer.Close();
        }

        public void WriteItem(string link, DateTime publishedDate, string priority)
        {
            writer.WriteStartElement(&amp;quot;url&amp;quot;);
            writer.WriteElementString(&amp;quot;loc&amp;quot;, link);
            writer.WriteElementString(&amp;quot;lastmod&amp;quot;, publishedDate.ToString(&amp;quot;yyyy-MM-dd&amp;quot;));
            writer.WriteElementString(&amp;quot;changefreq&amp;quot;, &amp;quot;always&amp;quot;);
            writer.WriteElementString(&amp;quot;priority&amp;quot;, priority);
            writer.WriteEndElement();
        }
    }
}&lt;/pre&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;This is just a basic Google Sitemap, you can add elements for geographic info about the item or mobile sitemaps etc. You can find more info for that on:&amp;#160; &lt;a href="http://www.google.com/support/webmasters/bin/answer.py?answer=34657"&gt;http://www.google.com/support/webmasters/bin/answer.py?answer=34657&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;You can use this class in an .aspx or .ashx file. I used an .aspx in the following (code behind) sample:&lt;/p&gt;&lt;br /&gt;
&lt;pre class="brush: csharp"&gt;protected void Page_Load(object sender, EventArgs e)
    {
        Response.Clear();
        Response.ContentType = &amp;quot;text/xml&amp;quot;;
        shop.BLL.Utility.SiteMapFeedGenerator gen = new shop.BLL.Utility.SiteMapFeedGenerator(Response.Output);
        
        gen.WriteStartDocument();
        gen.WriteItem(&amp;quot;http://www.mysamplesiterocks.com/Default.aspx&amp;quot;, DateTime.Now, &amp;quot;1.0&amp;quot;);
 gen.WriteEndDocument();
        gen.Close(); 
    }&lt;/pre&gt;&lt;br /&gt;
&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3195677141927528252-6762320161447088634?l=ridihima.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mWOQ9yoF96s_tWxJRNRVfRIylao/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mWOQ9yoF96s_tWxJRNRVfRIylao/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/mWOQ9yoF96s_tWxJRNRVfRIylao/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mWOQ9yoF96s_tWxJRNRVfRIylao/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Ridihimaanilsareen/~4/U1mpoByZJT8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://ridihima.blogspot.com/feeds/6762320161447088634/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=3195677141927528252&amp;postID=6762320161447088634&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/6762320161447088634?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/6762320161447088634?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Ridihimaanilsareen/~3/U1mpoByZJT8/google-sitemap-with-aspnet-c_04.html" title="Google Sitemap with Asp.Net C#" /><author><name>Ridihima.A.Sareen</name><uri>http://www.blogger.com/profile/10038909147345563036</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://1.bp.blogspot.com/_4Otw-Gh4QJg/S5-L84EUqGI/AAAAAAAAAAY/S22JiLXHKwM/S220/DSC01199.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://ridihima.blogspot.com/2010/06/google-sitemap-with-aspnet-c_04.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUICQX86fSp7ImA9WxFQEE4.&quot;"><id>tag:blogger.com,1999:blog-3195677141927528252.post-6933957496559481743</id><published>2010-05-04T21:26:00.000-07:00</published><updated>2010-05-04T21:26:00.115-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-04T21:26:00.115-07:00</app:edited><title>Must have Internet Explorer add-on for developers</title><content type="html">Developer uses tools to make life easier. One such tool is &lt;b&gt;Web Development helper&lt;/b&gt;. This is one of the best tool ever designed. &lt;br /&gt;
It has several common features:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * DOM inspector&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * Screen capture&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * Page details viewer&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * Script debugging with script console and script class viewer&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * Immediate window&lt;br /&gt;
&lt;br /&gt;
And a few helpful ASP.NET related features:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * ViewState viewer that show information in raw, decoded, and parsed forms&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * Show trace information&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * View and manage cache&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; * Restart application&lt;br /&gt;
&lt;br /&gt;
One of its feature, HTTP Logging, logs HTTP and HTTPS requests initiated by the browser or Ajax scripts. It provides all the information about Ajax postbacks shown under request and response details. That means We can actually see the information that is sent to the server and can see the markup or JSON objects that are sent back to the client.&lt;br /&gt;
&lt;br /&gt;
Web Development helper works with IE version 6 and above, and is completely free. It requires .NET Framework 2.0 to be installed.&lt;br /&gt;
&lt;i&gt;You can see more details and download this tool from &lt;a href="http://projects.nikhilk.net/WebDevHelper"&gt;Nikhil's Website.&lt;/a&gt;&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3195677141927528252-6933957496559481743?l=ridihima.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8tmDIOsrss-TB4nTMjh3Zbr1q0I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8tmDIOsrss-TB4nTMjh3Zbr1q0I/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8tmDIOsrss-TB4nTMjh3Zbr1q0I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8tmDIOsrss-TB4nTMjh3Zbr1q0I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Ridihimaanilsareen/~4/BWKawWtxr44" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://ridihima.blogspot.com/feeds/6933957496559481743/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=3195677141927528252&amp;postID=6933957496559481743&amp;isPopup=true" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/6933957496559481743?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/6933957496559481743?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Ridihimaanilsareen/~3/BWKawWtxr44/must-have-internet-explorer-add-on-for.html" title="Must have Internet Explorer add-on for developers" /><author><name>Ridihima.A.Sareen</name><uri>http://www.blogger.com/profile/10038909147345563036</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://1.bp.blogspot.com/_4Otw-Gh4QJg/S5-L84EUqGI/AAAAAAAAAAY/S22JiLXHKwM/S220/DSC01199.JPG" /></author><thr:total>2</thr:total><feedburner:origLink>http://ridihima.blogspot.com/2010/05/must-have-internet-explorer-add-on-for.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEDRXg9eCp7ImA9WxBbGUU.&quot;"><id>tag:blogger.com,1999:blog-3195677141927528252.post-9197603049469279803</id><published>2010-03-18T23:46:00.000-07:00</published><updated>2010-03-19T00:27:54.660-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-19T00:27:54.660-07:00</app:edited><title>Microsoft releases SDK for Facebook</title><content type="html">Microsoft has released a software developer kit for &lt;b&gt;FACEBOOK&lt;/b&gt; that'll allow developers to create facebook like applications for Silverlight and WPF (Windows Presentation Foundation). This'll help developers to build social application in much more easier manner.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_4Otw-Gh4QJg/S6McR7jXSUI/AAAAAAAAAA4/MosVKKlg7v0/s1600-h/Facebook_SDK_shot_1.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="160" src="http://4.bp.blogspot.com/_4Otw-Gh4QJg/S6McR7jXSUI/AAAAAAAAAA4/MosVKKlg7v0/s400/Facebook_SDK_shot_1.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&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;
This SDK is having samples, tools, source code for API, components, controls to develop FACEBOOK application in ASP.NET, Silverlight, WPF, and WinForms.&lt;br /&gt;
&lt;br /&gt;
If you're interested in taking a look, you can download the SDK &lt;a href="http://msdn.microsoft.com/en-us/windows/ee388574.aspx"&gt;here.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3195677141927528252-9197603049469279803?l=ridihima.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_zqhWCBy7JIsGDkNo32DxYLkPAU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_zqhWCBy7JIsGDkNo32DxYLkPAU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_zqhWCBy7JIsGDkNo32DxYLkPAU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_zqhWCBy7JIsGDkNo32DxYLkPAU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Ridihimaanilsareen/~4/25n1pYgnmYQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://ridihima.blogspot.com/feeds/9197603049469279803/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=3195677141927528252&amp;postID=9197603049469279803&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/9197603049469279803?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/9197603049469279803?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Ridihimaanilsareen/~3/25n1pYgnmYQ/microsoft-releases-sdk-for-facebook.html" title="Microsoft releases SDK for Facebook" /><author><name>Ridihima.A.Sareen</name><uri>http://www.blogger.com/profile/10038909147345563036</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://1.bp.blogspot.com/_4Otw-Gh4QJg/S5-L84EUqGI/AAAAAAAAAAY/S22JiLXHKwM/S220/DSC01199.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_4Otw-Gh4QJg/S6McR7jXSUI/AAAAAAAAAA4/MosVKKlg7v0/s72-c/Facebook_SDK_shot_1.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://ridihima.blogspot.com/2010/03/microsoft-releases-sdk-for-facebook.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU8FSH4zeCp7ImA9WxBbF04.&quot;"><id>tag:blogger.com,1999:blog-3195677141927528252.post-3659582331268550620</id><published>2010-03-16T00:28:00.000-07:00</published><updated>2010-03-16T04:10:19.080-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-16T04:10:19.080-07:00</app:edited><title>Talk about offshoring??</title><content type="html">&lt;span&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ridihima&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B002ZPIBLI&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="align: left; height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;/span&gt;In today’s world, for the software industry – ‘Offshoring’ and ‘Outsourcing to India’ – are synonyms. So if somebody is talking about offshoring, they are basically talking about outsourcing to India unless specified otherwise. Not to say that things are not changing – there are other countries like China and Vietnam who are picking up more and more work from the US. But they still have a long way to go because of the unique advantages that India has.&lt;br /&gt;
But, to SeaCode Inc, offshoring means three miles off the coast of the US. &lt;em&gt;What San Diego-based start-up SeaCode Inc. plans to do is nothing if not novel: anchor a cruise ship three miles off the coast of Los Angeles, fill it with up to 600 programmers from around the world, eliminate visa restrictions and make it easy for customers to visit the site via water taxi.&lt;/em&gt;&lt;br /&gt;
I won’t make a comment on whether they will be successful or not – since I am not yet clear if this is their entire business model or have they refined it further. But this idea is definitely interesting. Read the story &lt;a href="http://www.computerworld.com/s/article/103089/For_SeaCode_offshoring_means_three_miles_off_the_coast?taxonomyId=060"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3195677141927528252-3659582331268550620?l=ridihima.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/26xRRJ8hoHAb1lUtI6SflrpUKGM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/26xRRJ8hoHAb1lUtI6SflrpUKGM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/26xRRJ8hoHAb1lUtI6SflrpUKGM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/26xRRJ8hoHAb1lUtI6SflrpUKGM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Ridihimaanilsareen/~4/h1GP4DY0TtU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://ridihima.blogspot.com/feeds/3659582331268550620/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=3195677141927528252&amp;postID=3659582331268550620&amp;isPopup=true" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/3659582331268550620?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3195677141927528252/posts/default/3659582331268550620?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Ridihimaanilsareen/~3/h1GP4DY0TtU/talk-about-offshoring.html" title="Talk about offshoring??" /><author><name>Ridihima.A.Sareen</name><uri>http://www.blogger.com/profile/10038909147345563036</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://1.bp.blogspot.com/_4Otw-Gh4QJg/S5-L84EUqGI/AAAAAAAAAAY/S22JiLXHKwM/S220/DSC01199.JPG" /></author><thr:total>2</thr:total><feedburner:origLink>http://ridihima.blogspot.com/2010/03/talk-about-offshoring.html</feedburner:origLink></entry></feed>

