Dynamically adding JavaScript script tags at runtime
This is a report from here... First Let’s discuss about the issue of loading all the javascript files together at a stroke. 1. Javascript will not allow parallel download. So…
This is a report from here... First Let’s discuss about the issue of loading all the javascript files together at a stroke. 1. Javascript will not allow parallel download. So…
Great article: http://stackoverflow.com/questions/2959964/vs2010-web-deploy-how-to-remove-absolute-paths-and-automate-setacl The displayed path is determined by the property _MSDeployDirPath_FullPath. This property is setted by this chain of properties: <_MSDeployDirPath_FullPath>@(_MSDeployDirPath->'%(FullPath)')</_MSDeployDirPath_FullPath> <_MSDeployDirPath Include="$(_PackageTempDir)" /> <_PackageTempDir>$(PackageTempRootDir)PackageTmp</_PackageTempDir> <PackageTempRootDir>$(IntermediateOutputPath)Package</PackageTempRootDir> _MSDeployDirPath_FullPath <-- @(_MSDeployDirPath->'%(FullPath)')…
SELECT OBJECT_NAME(OBJECT_ID) TableName, st.row_count FROM sys.dm_db_partition_stats st WHERE index_id < 2 ORDER BY st.row_count DESC GO
Check out this great tool for working with .NET config file transforms http://www.hanselman.com/blog/SlowCheetahWebconfigTransformationSyntaxNowGeneralizedForAnyXMLConfigurationFile.aspx
Good article from stackoverflow http://stackoverflow.com/questions/3004210/app-config-transformation-for-projects-which-are-not-web-projects-in-visual-stud Great article from: http://www.olegsych.com/2010/12/config-file-transformation/ ----
If you have ever had the scenario where you have a main ASP.NET web application and then need to create one or more sub virtual folders that contain completely independant…
MSDN Article: http://msdn.microsoft.com/en-us/library/ms178473(v=VS.80).aspx In my recent quest to integrate support for SiteMinder into the ASP.NET Membership process I found myself looking into the details of ASP.NET Http Modules. Once…
Couple of good articles for Contract First Development WSDL-First development for WCF http://blogs.msdn.com/b/dotnetinterop/archive/2008/09/24/wsdl-first-development-with-wcf.aspx WSCF - Web Service ContractFirst http://www.thinktecture.com/resourcearchive/tools-and-software/wscf/wscf-walkthrough thinktecture WSCF.blue (set of good tools) http://wscfblue.codeplex.com/ …
Here are a couple of great sites that supply cheat sheets http://john-sheehan.com/blog/net-cheat-sheets/ http://devcheatsheet.com/ http://www.addedbytes.com/cheat-sheets/ Here are a couple of specific links to cheat sheets http://duartes.org/gustavo/articles/Asp.net-Runtime-Cheat-Sheet-HttpRequest-HttpRuntime.aspx And here are…
Routinely I am forgetting how to do this :) So to make life easier I am writting up a blog posting. When writting unit tests for VS2008/VS2010 you will…