<?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-7712943</id><updated>2011-05-18T10:50:17.086+05:30</updated><title type='text'>Pratap Ladhani</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>15</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7712943.post-115747462353599312</id><published>2006-09-05T22:04:00.000+05:30</published><updated>2006-09-05T22:13:43.553+05:30</updated><title type='text'>Web Service Specifications</title><content type='html'>To start with, take a look at the &lt;a href="http://en.wikipedia.org/wiki/List_of_Web_service_specifications"&gt;List of Web Service Specifications&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/webservices/webservices/understanding/specs/default.aspx"&gt;A list of Web Service Specifications on MSDN&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a name="securitywhitepaper"&gt;&lt;/a&gt;Also read the article : &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwssecur/html/securitywhitepaper.asp"&gt;Security in a Web Services World: A Proposed Architecture and Roadmap - &lt;/a&gt;A Joint White Paper from IBM Corporation and Microsoft Corporation&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-115747462353599312?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/115747462353599312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=115747462353599312' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/115747462353599312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/115747462353599312'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2006/09/web-service-specifications.html' title='Web Service Specifications'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-113276160159793933</id><published>2005-11-23T21:11:00.000+05:30</published><updated>2005-11-23T21:30:01.650+05:30</updated><title type='text'>ReadOnly Textboxes not preserving value in ASP.NET</title><content type='html'>I just came across a behaviour in ASP.NET 2.0 which is a breaking change between the previous versions.&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.textbox.readonly.aspx"&gt;MSDN Documentation &lt;/a&gt;mentions it as follows:-&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Important: &lt;/strong&gt;&lt;br /&gt;The &lt;a onclick="javascript:TrackThisClick('ctl00_LibFrame_MainContent_ctl28','ctl00_LibFrame_MainContent_ctl28::ctl00_LibFrame_MainContent_ctl29',this.href);" href="http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.textbox.text.aspx"&gt;Text&lt;/a&gt; value of a TextBox control with the ReadOnly property set to true is sent to the server when a postback occurs, but the server does no processing for a read-only text box. This prevents a malicious user from changing a Text value that is read-only. The value of the Text property is preserved in the view state between postbacks unless modified by server-side code.&lt;br /&gt;&lt;br /&gt;However I had a lot of code in my current application which uses the Text value of the control when it is ReadOnly.&lt;br /&gt;&lt;br /&gt;So I wrote the following workaround in my PageBase class which is the base class for all Pages of my application:-&lt;br /&gt;&lt;code&gt;&lt;br /&gt;protected override void OnLoad(EventArgs e)&lt;br /&gt;        {&lt;br /&gt;            SetReadOnlyTextBoxValue(Page.Controls);&lt;br /&gt;   base.OnLoad (e);&lt;br /&gt;        }&lt;br /&gt;        /// &lt;summary&gt;&lt;br /&gt;        /// In ASP.NET 2.0, if the TextBox is ReadOnly, &lt;br /&gt;        /// then any changes made to it using javascript are not retained.&lt;br /&gt;        /// This was not the case for ASP 1.1.&lt;br /&gt;        /// This function overrides the behaviour by re-assigning &lt;br /&gt;        /// the values of the textboxes by collecting it from Request&lt;br /&gt;        /// &lt;/summary&gt;&lt;br /&gt;        /// &lt;param name="ctrls"&gt;&lt;/param&gt;&lt;br /&gt;        private void SetReadOnlyTextBoxValue(ControlCollection ctrls)&lt;br /&gt;        {&lt;br /&gt;            if (ctrls != null)&lt;br /&gt;            {&lt;br /&gt;                foreach (Control ctrl in ctrls)&lt;br /&gt;                {&lt;br /&gt;                    if (ctrl.HasControls())&lt;br /&gt;                    {&lt;br /&gt;                        SetReadOnlyTextBoxValue(ctrl.Controls);&lt;br /&gt;                    }&lt;br /&gt;                    TextBox txt = ctrl as TextBox;&lt;br /&gt;                    if (txt != null &amp;&amp; txt.ReadOnly &amp;&amp; Request.Form[txt.ID] != null)&lt;br /&gt;                    {&lt;br /&gt;                        txt.Text = Request.Form[txt.ID];&lt;br /&gt;                    }&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;        } &lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-113276160159793933?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/113276160159793933/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=113276160159793933' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/113276160159793933'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/113276160159793933'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/11/readonly-textboxes-not-preserving.html' title='ReadOnly Textboxes not preserving value in ASP.NET'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-113137680090789754</id><published>2005-11-07T20:48:00.000+05:30</published><updated>2005-11-07T20:50:00.920+05:30</updated><title type='text'>Web Deployment Projects</title><content type='html'>&lt;strong&gt;Project files are back for web projects in VS 2005!&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/anutthara/archive/2005/10/20/483091.aspx"&gt;http://blogs.msdn.com/anutthara/archive/2005/10/20/483091.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;That's almost true .... :) Last week I was involved with testing an add in that the ASP.NET team was working on - it is called "Web deployment projects". This is an add in that will be shipped about the same time as VS 2005. Having used VS 2003 back in school, when I joined MSFT after graduating, I was a little unsettled at the thought of having web "projects" without project files! In the course of 2 years, I became used to this model though the pain of not having a project file would surface now and then.&lt;br /&gt;With this add in, you can now associate any web app with a web deployment project that is nothing but an MSBuild project file. It is as easy as a right click + add. The web deployment project can be configured to built in various configurations and can automatically deploy your website on an IIS server (pretty cool from a Team Build perspective too). This comes integrated with the Asp_merge tool that can actually compile your web project into a single dll with a sane name (compare against the App32435435__90blah blah.dll that is auto generated now) or separate dlls per folder or per page. You can also replace sections of your web.config file in a simple UI to override specific settings. Strong name signing is also built into this UI along with options for delay signing. Of course, since this is an MSBuild project file, it is highly extensible and stubs are already provided in the project file to override and add custom tasks.&lt;br /&gt;Undoubtedly, the feature I liked best was the IIS deployment feature, where you can choose the virtual directory to deploy to and also opt to delete pre-existing directories or not. The coolth of it is the integration it brings to Team Build web testing scenarios. Users that run web tests on web apps built in Team Build need to deploy the app on the IIS server on the build machine. There was no out of the box solution for this and it involved having to write custom tasks in order to deploy the web app. Now, all we need to do is include the deployment project in the team project to build, and lo - the web tests can run with no custom tasks in between.&lt;br /&gt;I was pretty charmed by this add in, so much that I wondered why this wasn't part of the product itself ;-)&lt;br /&gt;Let me know what you think of the web deployment project add in when you get to use it!&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Web Deployment Projects to fix Lack of Web Project Files&lt;br /&gt;&lt;a href="http://weblogs.asp.net/pwilson/archive/2005/10/05/426689.aspx"&gt;http://weblogs.asp.net/pwilson/archive/2005/10/05/426689.aspx&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;I just saw a demo of a new feature that the MS ASP.NET team will be releasing as an add-on to VS 2005 -- it should be available at launch too.  Its called Web Deployment Projects and its basically allowing you to handle a lot of the scenarios we used to be able to do with web project files -- and more.  Under the cover its just a standard MSBuild file, so its already well documented and very extensible, but its also going to hook in the new aspnet_merge tool and provide a basic UI for common scenarios.  Things you'll be able to do include specifying whether or not you want one assembly per page, folder, or entire web project -- and you'll be able to specify several naming options for those assemblies too.  You'll also be able to have different build configuration options like you can today in VS 2003 -- but even better than today you'll be able to have the build process link or replace parts of your web.config file with configuration specific web.config pieces (like separate connection strings for debug, staging, and release).  You'll also be able to specify things like assembly signing and you'll be able to tell it the asp.net compiler to follow the IIS metabase paths so that sub-webs are effectively excluded.  It looks like its very much on track to give us everything we were missing from VS 2003, and more, as well as giving as an extensible solution for anything else we can dream up since this is just an MSBuild file like all the other project files.  And of course this will be completely optional, so all those that have liked the simplicity of not having a web project file will in no way be forced to use this new web deployment project.  Very cool stuff -- and I'm very glad that MS had listened to those of us that had issues with the lack of the web project.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Visual Studio 2005 Web Deployment Projects &lt;/strong&gt;&lt;br /&gt;&lt;a href="http://aspadvice.com/blogs/ssmith/archive/2005/10/05/Visual_Studio_2005_Web_Deployment_Projects.aspx"&gt;http://aspadvice.com/blogs/ssmith/archive/2005/10/05/Visual_Studio_2005_Web_Deployment_Projects.aspx&lt;/a&gt;&lt;br /&gt;The ASPInsiders were just introduced to an upcoming and as-yet-unannounced addin for Visual Studio 2005 that should ship with or close to RTM.  The feature is called Web Deployment Projects, and will extend VS 2005's capabilities for building and deploying ASP.NET web projects.  VS 2005 did away with web project files, and there has been some pushback in the community on this because there are many enterprise scenarios where project files make sense (they were removed because they cause a lot of pain in VS 2002/2003).&lt;br /&gt;The Web Deployment Projects feature works like this.  It's an addin, so it builds on top of VS 2005 but doesn't touch any of the actual bits there (it's separate).  So, it's optional if you want to install it, but most enterprise users will likely want to do so.  To create one, right click on a website in VS2005 solution explorer and select the new menu item, Add Web Deployment Project.  This will add a new project to the solution which will manage the build and deploy options for the website.&lt;br /&gt;The Web Deployment Project is literally just an MSBuild file, with some UI to help set it up.  You can always drop down and hand edit the MSBuild file if you need to.  The UI covers most of the usual scenarios, though, and supports separate configurations for deployment for each different build config in Visual Studio.  Some scenarios it enables out of the box are:&lt;br /&gt;Precompiling websites&lt;br /&gt;Merging precompiled outputs into single assembly&lt;br /&gt;Swapping out config sections per-configuration option&lt;br /&gt;Swapping out entire config files per configuration option&lt;br /&gt;Include/Exclude different folders/files per configuration option&lt;br /&gt;At RTM there will be 2 white papers published detailing how this was built and how to use it in a variety of scenarios.  This is not RTM so you should expect to see some other blogs talking about it today and in the near future.  There were a lot of things that VS2005 couldn't easily do because of its omission of web project files, so this is a great addition that covers most (all?) of these scenarios.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-113137680090789754?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/113137680090789754/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=113137680090789754' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/113137680090789754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/113137680090789754'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/11/web-deployment-projects.html' title='Web Deployment Projects'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-113066924767351587</id><published>2005-10-30T16:08:00.000+05:30</published><updated>2005-10-30T16:17:27.723+05:30</updated><title type='text'>Looking for resources to learn about ClickOnce?</title><content type='html'>&lt;a href="http://blogs.msdn.com/saurabh/default.aspx"&gt;Saurabh &lt;/a&gt;has compiled a list of resources for ClickOnce at his blog:&lt;br /&gt;&lt;a href="http://blogs.msdn.com/saurabh/archive/2005/10/28/486106.aspx"&gt;Top X ways to learn about ClickOnce &lt;/a&gt;-&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;ClickOnce Discussion Forums:   &lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;External forum - &lt;a href="http://forums.microsoft.com/msdn/ShowForum.aspx?ForumID=6"&gt;http://forums.microsoft.com/msdn/ShowForum.aspx?ForumID=6&lt;/a&gt;      - As I as have mentioned earlier in my blogs, the forum is the ideal site to go to with ClickOnce issues, bugs, feature request and even general discussion on App Model/Deployment. It is looked at regularly by the ClickOnce product team who do a great of following up on the posts.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Microsoft sites:    &lt;/strong&gt;&lt;br /&gt;Smart Client Dev Center Home: &lt;a href="http://msdn.microsoft.com/smartclient/understanding/windowsforms/2.0/features/clickonce.aspx"&gt;http://msdn.microsoft.com/smartclient/understanding/windowsforms/2.0/features/clickonce.aspx&lt;/a&gt;   &lt;br /&gt;MSDN content on ClickOnce - &lt;a href="http://msdn2.microsoft.com/en-us/library/wh45kb66(en-us,vs.80).aspx"&gt;http://msdn2.microsoft.com/en-us/library/wh45kb66(en-us,vs.80).aspx&lt;/a&gt;.       &lt;br /&gt;&lt;br /&gt;Video of Jamie Cool the PM on the Winforms/ClickOnce team demoing ClickOnce - &lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=15303"&gt;http://channel9.msdn.com/ShowPost.aspx?PostID=15303&lt;/a&gt;    &lt;br /&gt;&lt;br /&gt;Article by Brian Noyes on configuring trust with ClickOnce - &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwinforms/html/clickoncetrustpub.asp"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwinforms/html/clickoncetrustpub.asp&lt;/a&gt;   &lt;br /&gt;&lt;br /&gt;Article on ClickOnce and Regfree COM - &lt;a href="http://msdn.microsoft.com/msdnmag/issues/05/04/RegFreeCOM/default.aspx"&gt;http://msdn.microsoft.com/msdnmag/issues/05/04/RegFreeCOM/default.aspx&lt;/a&gt;&lt;br /&gt;   &lt;br /&gt;Overview article by Brian Noyes - &lt;a href="http://msdn.microsoft.com/msdnmag/issues/04/05/ClickOnce/"&gt;http://msdn.microsoft.com/msdnmag/issues/04/05/ClickOnce/&lt;/a&gt;     - Bit old so some specifics may have changed but overall is accurate)    &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Non-Microsoft sites:  &lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;Links to various ClickOnce related material - &lt;a href="http://www.installsite.org/pages/en/clickonce.htm"&gt;http://www.installsite.org/pages/en/clickonce.htm&lt;/a&gt;.   &lt;br /&gt;&lt;br /&gt;VS Support for ClickOnce - &lt;a href="http://www.ondotnet.com/pub/a/dotnet/2004/10/11/clickonce.html"&gt;http://www.ondotnet.com/pub/a/dotnet/2004/10/11/clickonce.html&lt;/a&gt;   &lt;br /&gt;&lt;br /&gt;Another VS walkthrough - &lt;a href="http://www.15seconds.com/issue/041229.htm"&gt;http://www.15seconds.com/issue/041229.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Few Blog references to ClickOnce:  &lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;Saurabh's blog - &lt;a href="http://blogs.msdn.com/saurabh/"&gt;http://blogs.msdn.com/saurabh/&lt;/a&gt;     -&lt;br /&gt;&lt;br /&gt;The one stop Authoratative ClickOnce Resource (well Sammer's mail didn't say so but it should have :-) ) &lt;br /&gt;&lt;a href="http://mtaulty.com/blog/(5re21u3e1v3wjmm1qhgybqfo)/archive/2004/07/05/524.aspx"&gt;http://mtaulty.com/blog/(5re21u3e1v3wjmm1qhgybqfo)/archive/2004/07/05/524.aspx&lt;/a&gt;    &lt;a href="http://mtaulty.com/blog/(32qtav45kx5a5zeb2taste3j)/archive/2004/07/06/525.aspx"&gt;http://mtaulty.com/blog/(32qtav45kx5a5zeb2taste3j)/archive/2004/07/06/525.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-113066924767351587?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blogs.msdn.com/saurabh/archive/2005/10/28/486106.aspx' title='Looking for resources to learn about ClickOnce?'/><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/113066924767351587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=113066924767351587' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/113066924767351587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/113066924767351587'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/10/looking-for-resources-to-learn-about.html' title='Looking for resources to learn about ClickOnce?'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-112871733998035153</id><published>2005-10-08T01:49:00.000+05:30</published><updated>2005-10-08T02:05:40.006+05:30</updated><title type='text'>First Experience while working with Visual Studio Team Foundation Server (Beta 3)</title><content type='html'>I just finished installing the Team Foundation Client on my machine. I also installed the Team Foundation Proxy on a server hosted here locally in Hyderabad. (My TFS Server is out in Redmond).&lt;br /&gt;My VS2005 IDE was configured to use VSS.&lt;br /&gt;I had to switch the Source-Control Options to "Visual Studio Team Foundation Server".&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/blogger/3256/488/1600/SourceControlSettings.jpg"&gt;&lt;img style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://photos1.blogger.com/blogger/3256/488/400/SourceControlSettings.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I also had to set the location of the Proxy server that I had configured.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/blogger/3256/488/1600/SourceControlSettings21.jpg"&gt;&lt;img style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://photos1.blogger.com/blogger/3256/488/400/SourceControlSettings21.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I checked in an entire project into the source control and it took less than 2 minutes. The same thing if I had used VSS, it might have taken me at least 2-3 hours due to the distance between Hyderabad (India) and Redmond (USA)). &lt;/p&gt;&lt;p&gt;Incredible speed!!!&lt;/p&gt;&lt;p&gt;VSTS ROCKS!!!!!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-112871733998035153?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/112871733998035153/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=112871733998035153' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112871733998035153'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112871733998035153'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/10/first-experience-while-working-with.html' title='First Experience while working with Visual Studio Team Foundation Server (Beta 3)'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-112866359148471083</id><published>2005-10-07T11:04:00.000+05:30</published><updated>2005-10-07T11:09:51.490+05:30</updated><title type='text'>patterns &amp; practices Security Guidance for Applications Index</title><content type='html'>The Patterns and Practices team has published an index of patterns &amp; practices Security Guidance for applications. The resources include guides and books available on MSDN together with modular content of various types including scenarios and solutions, guidelines, explained, checklists, and How Tos.&lt;br /&gt;&lt;br /&gt;This article is also available via an easy to remember url: &lt;a href="http://www.msdn.com/SecurityGuidance"&gt;http://www.msdn.com/SecurityGuidance&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The index to the .NET 2.0 security guidance can be found at: &lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/AppSecGuidanceForFrameworkV2.asp"&gt;http://msdn.microsoft.com/library/en-us/dnpag2/html/AppSecGuidanceForFrameworkV2.asp&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;So now you know where to go for any Security Related guidance.&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-112866359148471083?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.msdn.com/SecurityGuidance' title='patterns &amp; practices Security Guidance for Applications Index'/><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/112866359148471083/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=112866359148471083' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112866359148471083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112866359148471083'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/10/patterns-practices-security-guidance.html' title='patterns &amp; practices Security Guidance for Applications Index'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-112719066233313115</id><published>2005-09-20T09:55:00.000+05:30</published><updated>2005-09-20T10:01:02.343+05:30</updated><title type='text'>Security Guidance for .NET Framework 2.0</title><content type='html'>&lt;p&gt;I read about a nice blog regarding &lt;a href="https://blogs.msdn.com/federaldev/archive/2005/09/19/471569.aspx"&gt;Security in .NET Framework 2.0&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://msdn.microsoft.com/practices/"&gt;patterns and practices&lt;/a&gt; folks have been getting rave reviews for the &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/AppSecGuidanceForFrameworkV2.asp"&gt;Security Guidance for the .NET Framework 2.0&lt;/a&gt; content they've assembled. There are 25 "how-to's" currently available with a bunch more coming soon.&lt;br /&gt;The available ones are:&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000007.asp"&gt;How To: Configure the Machine Key in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000010.asp"&gt;How To: Connect to SQL Server Using SQL Authentication in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000008.asp"&gt;How To: Connect to SQL Server Using Windows Authentication in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000009.asp"&gt;How To: Create a Service Account for an ASP.NET 2.0 Application&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000005.asp"&gt;How To: Encrypt Configuration Sections in ASP.NET 2.0 Using DPAPI&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000006.asp"&gt;How To: Encrypt Configuration Sections in ASP.NET 2.0 Using RSA&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000016.asp"&gt;How To: Instrument ASP.NET 2.0 Applications for Security&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000004.asp"&gt;How To: Prevent Cross-Site Scripting in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000012.asp"&gt;How To: Protect Forms Authentication in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000003.asp"&gt;How To: Protect From Injection Attacks in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000002.asp"&gt;How To: Protect From SQL Injection in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000018.asp"&gt;How To: Use ADAM for Roles in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000019.asp"&gt;How To: Use Authorization Manager (AzMan) with ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000017.asp"&gt;How To: Use Code Access Security in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000026.asp"&gt;How To: Use Forms Authentication with Active Directory in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000021.asp"&gt;How To: Use Forms Authentication with Active Directory in Multiple Domains in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000014.asp"&gt;How To: Use Forms Authentication with SQL Server in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000011.asp"&gt;How To: Use Health Monitoring in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000023.asp"&gt;How To: Use Impersonation and Delegation in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000020.asp"&gt;How To: Use Medium Trust in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000022.asp"&gt;How To: Use Membership in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000015.asp"&gt;How To: Use the Network Service Account to Access Resources in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000001.asp"&gt;How To: Use Regular Expressions to Constrain Input in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000013.asp"&gt;How To: Use Role Manager in ASP.NET 2.0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000025.asp"&gt;How To: Use Windows Authentication in ASP.NET 2.0&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/7712943-112719066233313115?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='https://blogs.msdn.com/federaldev/archive/2005/09/19/471569.aspx' title='Security Guidance for .NET Framework 2.0'/><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/112719066233313115/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=112719066233313115' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112719066233313115'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112719066233313115'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/09/security-guidance-for-net-framework-20.html' title='Security Guidance for .NET Framework 2.0'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-112684574937679146</id><published>2005-09-16T09:48:00.000+05:30</published><updated>2005-09-16T10:12:29.383+05:30</updated><title type='text'>Interesting notes at PDC</title><content type='html'>Lots and lots of new technology being announced at the &lt;a href="http://msdn.microsoft.com/events/pdc/"&gt;PDC 2005&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/events/executives/billgates.mspx"&gt;Watch the Bill Gates Keynote&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I am compiling my list:-&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/netframework/future/linq/"&gt;LINQ&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/Vbasic/future"&gt;VB 9&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://atlas.asp.net/"&gt;Atlas&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/windowsvista/building/workflow/"&gt;Windows Workflow Foundation&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.microsoft.com/expression/"&gt;Expression&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;Quite interesting General Session notes at &lt;a href="http://blogs.msdn.com/gsnowman/archive/2005/09/15/467834.aspx"&gt;Bob Muglia General Session Notes&lt;/a&gt;.&lt;br /&gt;DSL specific notes at &lt;a href="http://blogs.msdn.com/gsnowman/archive/2005/09/15/467837.aspx"&gt;Domain Specific Languages Session Notes&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-112684574937679146?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/112684574937679146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=112684574937679146' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112684574937679146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112684574937679146'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/09/interesting-notes-at-pdc.html' title='Interesting notes at PDC'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-112638140748250506</id><published>2005-09-11T00:58:00.000+05:30</published><updated>2005-09-11T01:14:43.826+05:30</updated><title type='text'>HTTP Debugging</title><content type='html'>I came to know of a nice tool today, while reading about &lt;a href="http://ajaxpro.schwarz-interactive.de/"&gt;AJAX.NET Professional&lt;/a&gt; at &lt;a href="http://weblogs.asp.net/mschwarz/"&gt;Michael Schwarz's site&lt;/a&gt;, by the name &lt;a href="http://www.fiddlertool.com"&gt;Microsoft Fiddler&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;What is Fiddler?&lt;/strong&gt;&lt;br /&gt;&lt;blockquote&gt;Fiddler is a HTTP Debugging Proxy which logs all HTTP traffic between your&lt;br /&gt;computer and the Internet. Fiddler allows you to inspect all HTTP Traffic, set&lt;br /&gt;breakpoints, and "fiddle" with incoming or outgoing data. Fiddler is designed to&lt;br /&gt;be much simpler than using NetMon or Achilles, and includes a simple but&lt;br /&gt;powerful JScript.NET event-based scripting subsystem.&lt;/blockquote&gt;&lt;p&gt;Read more about Fiddler at these MSDN Articles - &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebgen/html/IE_IntroFiddler.asp"&gt;Fiddler PowerToy - Part 1: HTTP Debugging&lt;/a&gt; and &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebgen/html/IE_IntroFiddler2.asp"&gt;Fiddler PowerToy - Part 2: HTTP Performance&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Happy Fiddling :)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-112638140748250506?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/112638140748250506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=112638140748250506' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112638140748250506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112638140748250506'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/09/http-debugging.html' title='HTTP Debugging'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-112585847839575228</id><published>2005-09-04T23:35:00.000+05:30</published><updated>2005-09-04T23:57:58.450+05:30</updated><title type='text'>Getting Started with MSBuild</title><content type='html'>&lt;span style="font-family:trebuchet ms;"&gt;Listed below are certain important links which may be useful for getting started with MSBuild.&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family:trebuchet ms;"&gt;MSDN Home page of &lt;/span&gt;&lt;a href="http://lab.msdn.microsoft.com/vs2005/teams/msbuild/default.aspx"&gt;&lt;span style="font-family:trebuchet ms;"&gt;MSBuild&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:trebuchet ms;"&gt;View the &lt;/span&gt;&lt;a href="http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20040122VSNETAK/manifest.xml"&gt;&lt;span style="font-family:trebuchet ms;"&gt;MSDN TV Episode &lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms;"&gt;on &lt;strong&gt;Visual Studio 2005: MSBuild&lt;/strong&gt; by &lt;/span&gt;&lt;a href="http://blogs.msdn.com/akipman/"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Alex Kipman&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:trebuchet ms;"&gt;Alternatively you can read the transcript of the episode: &lt;/span&gt;&lt;a href="http://msdn.microsoft.com/msdntv/transcripts/20040122VSNETAKTranscript.aspx"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Transcript: Visual Studio 2005: MSBuild&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://mtaulty.com/blog/"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Mike Taulty's Blog&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms;"&gt; on &lt;/span&gt;&lt;a href="http://mtaulty.com/blog/archive/2004/07/07/527.aspx"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Getting Started with MSBuild&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:trebuchet ms;"&gt;And a lots of resources listed at the &lt;/span&gt;&lt;a href="http://channel9.msdn.com/wiki/default.aspx/MSBuild.HomePage"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Channel9 MSBuild Wiki Home Page&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn2.microsoft.com/library/0k6kkbsd(en-us,vs.80).aspx"&gt;&lt;span style="font-family:trebuchet ms;"&gt;MSBuild Reference&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms;"&gt; at MSDN&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnlong/html/msbuildpart1.asp"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Overview of MSBuild, Part 1: From a Project Author's Perspective&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnlong/html/msbuildpart2.asp"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Overview of MSBuild, Part 2: From the Task Author's Perspective&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnlong/html/msbuildpart2.asp"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Overview of MSBuild, Part 3: What Is the Limit to Extensibility?&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://notgartner.com/"&gt;&lt;span style="font-family:trebuchet ms;"&gt;Mitch Denny's Blog&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms;"&gt; on "&lt;/span&gt;&lt;a href="http://notgartner.com/posts/1573.aspx"&gt;&lt;span style="font-family:trebuchet ms;"&gt;The Road to MSBuild&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms;"&gt;"&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-112585847839575228?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/112585847839575228/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=112585847839575228' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112585847839575228'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/112585847839575228'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/09/getting-started-with-msbuild.html' title='Getting Started with MSBuild'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-111043617594927605</id><published>2005-03-10T11:57:00.000+05:30</published><updated>2005-03-11T15:29:44.170+05:30</updated><title type='text'>Displaying the Gmail ATOM feed in your Web Browser</title><content type='html'>&lt;p&gt;A great article by &lt;a class="headermaintitle" id="Header1_HeaderTitle" href="http://weblogs.asp.net/ahoffman/"&gt;Alex Hoffman&lt;/a&gt; which explains how you can convert the GMail Atom Feed on a web-browser using XSL Stylesheets.&lt;/p&gt;&lt;p&gt;&lt;a href="http://weblogs.asp.net/ahoffman/archive/2004/10/14/242158.aspx"&gt;http://weblogs.asp.net/ahoffman/archive/2004/10/14/242158.aspx&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/7712943-111043617594927605?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/111043617594927605/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=111043617594927605' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/111043617594927605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/111043617594927605'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2005/03/displaying-gmail-atom-feed-in-your-web.html' title='Displaying the Gmail ATOM feed in your Web Browser'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-109144217234779661</id><published>2004-08-02T15:50:00.000+05:30</published><updated>2004-08-02T15:52:52.346+05:30</updated><title type='text'>Localization in ASP.NET 2.0 and Visual Studio .NET 2005</title><content type='html'>&lt;strong&gt;Interesting blog regarding Localization in ASP.NET 2.0. &lt;/strong&gt;&lt;br /&gt;(Application Wide Resources &amp;amp; Code Changes)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://weblogs.asp.net/plip/articles/114141.aspx"&gt;Localization in ASP.NET 2.0 and Visual Studio .NET 2005&lt;/a&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-109144217234779661?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/109144217234779661/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=109144217234779661' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109144217234779661'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109144217234779661'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2004/08/localization-in-aspnet-20-and-visual.html' title='Localization in ASP.NET 2.0 and Visual Studio .NET 2005'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-109110444493588879</id><published>2004-07-29T17:54:00.000+05:30</published><updated>2004-07-29T18:04:04.936+05:30</updated><title type='text'>Improving Web Application Security: Threats and Countermeasures</title><content type='html'>&lt;p&gt;I went throught this important article from MSDN related to Web Application Security:- &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/THCMGlance.asp"&gt;Improving Web Application Security -&gt; Solutions at a Glance&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;It addresses the following topics:- &lt;br /&gt;&lt;ul&gt;&lt;li&gt;How to identify and evaluate threats &lt;/li&gt;&lt;li&gt;How to create secure designs &lt;/li&gt;&lt;li&gt;How to perform an architecture and design review &lt;/li&gt;&lt;li&gt;What is .NET Framework security &lt;/li&gt;&lt;li&gt;How to write secure managed code &lt;/li&gt;&lt;li&gt;How to handle exceptions securely &lt;/li&gt;&lt;li&gt;How to perform security reviews of managed code &lt;/li&gt;&lt;li&gt;How to secure a developer workstation &lt;/li&gt;&lt;li&gt;How to use code access security with ASP.NET &lt;/li&gt;&lt;li&gt;How to write least privileged code &lt;/li&gt;&lt;li&gt;How to constrain file I/O &lt;/li&gt;&lt;li&gt;How to prevent SQL injection &lt;/li&gt;&lt;li&gt;How to prevent cross-site scripting &lt;/li&gt;&lt;li&gt;How to manage secrets &lt;/li&gt;&lt;li&gt;How to call unmanaged code securely &lt;/li&gt;&lt;li&gt;How to perform secure input validation &lt;/li&gt;&lt;li&gt;How to secure Forms authentication &lt;/li&gt;&lt;li&gt;How to implement patch management &lt;/li&gt;&lt;li&gt;How to make the settings in Machine.config and Web.config more secure &lt;/li&gt;&lt;li&gt;How to secure a Web server running the .NET Framework &lt;/li&gt;&lt;li&gt;How to secure a database server &lt;/li&gt;&lt;li&gt;How to secure an application server &lt;/li&gt;&lt;li&gt;How to host multiple ASP.NET applications securely &lt;/li&gt;&lt;li&gt;How to secure Web services &lt;/li&gt;&lt;li&gt;How to secure Enterprise Services &lt;/li&gt;&lt;li&gt;How to secure Microsoft .NET Remoting &lt;/li&gt;&lt;li&gt;How to secure session state &lt;/li&gt;&lt;li&gt;How to manage application configuration securely &lt;/li&gt;&lt;li&gt;How to secure against denial of service attacks &lt;/li&gt;&lt;li&gt;How to constrain file I/O &lt;/li&gt;&lt;li&gt;How to perform remote administration &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-109110444493588879?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109110444493588879'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109110444493588879'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2004/07/improving-web-application-security.html' title='Improving Web Application Security: Threats and Countermeasures'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-109060066754715252</id><published>2004-07-23T22:07:00.000+05:30</published><updated>2004-07-23T22:11:26.033+05:30</updated><title type='text'>Creating Custom Web Controls with ASP.NET 2.0</title><content type='html'>&lt;a href="http://msdn.microsoft.com/asp.net/whidbey/default.aspx?pull=/library/en-us/dnvs05/html/custwebcon.asp"&gt;Creating Custom Web Controls with ASP.NET 2.0&lt;/a&gt; &lt;br /&gt;A great url for exploring the new features that are available in ASP.NET 2.0 for Custom Web Controls. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-109060066754715252?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pladhani.blogspot.com/feeds/109060066754715252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7712943&amp;postID=109060066754715252' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109060066754715252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109060066754715252'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2004/07/creating-custom-web-controls-with.html' title='Creating Custom Web Controls with ASP.NET 2.0'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7712943.post-109056419319121227</id><published>2004-07-23T11:58:00.000+05:30</published><updated>2004-07-23T11:59:53.190+05:30</updated><title type='text'>Blogging Experience</title><content type='html'>This is the first blog that I am creating. I just want to experiment out and log all the cool things that I find out while working or reading. &lt;br /&gt;&lt;br /&gt;More to come soon... &lt;br /&gt;Pratap &lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7712943-109056419319121227?l=pladhani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109056419319121227'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7712943/posts/default/109056419319121227'/><link rel='alternate' type='text/html' href='http://pladhani.blogspot.com/2004/07/blogging-experience.html' title='Blogging Experience'/><author><name>Pratap Ladhani</name><uri>http://www.blogger.com/profile/04045337449888271271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://photos1.blogger.com/blogger/3256/488/1600/pladhani_88x105.jpg'/></author></entry></feed>
