ASP.NET jQuery Banner Rotator
Recently I have created a simple jQuery banner rotator using ASP.NET that has following features. 1) Bind dynamic data 2) Rotates banner in every 5 seconds (configurable) 3) Pager 3) Jump to any banner...
View ArticleTips for your TFS 2010 migration, more lesson learned
Last couple weeks I have been busy migrating TFS 2008 to TFS 2010. I would like to share my experience and other website links/posts that helped me a lot. Here are couple useful links. Whats new in...
View ArticleRed “X” on TFS Documents and Reports
There are two different permission needs to be set to be able to access “Documents” and “Reports”. Documents are hosted on sharepoint site so you need to give user permission to sharepoint site and...
View ArticleTFS Build strategies for large projects
For large projects that has multiple solutions and many dozens class library projects, Scheduled build or Continuous Integration build often takes lot of time to build entire projects. The reason not...
View ArticleWhat is RESful service and designning RESTful service using ASP.NET
REST stands for Representational State Transfer. REST is an architecture style for designing networked applications. RESTful applications use HTTP requests to post data (either insert or update),...
View ArticleCross Domain ASP.NET Web API Call Using ajax
If you have created RESTful API (using ASP.NET Web API) and creating a nice UI using jQuery ajax call, you may be running into cross domain ajax call issue. Under the same origin policy, you CAN’T...
View ArticleUSA State, Counties and Zipcode Boundaries in .shp and .kml formats
Your search ended up here so you may be looking for USA State, Counties or ZipCode boundaries. I do have USA State, Counties and ZipCode boundaries in .shp and .kml format. If you are using Google...
View ArticleHow to convert shape file to kml file using GDAL utilities
I will show you in this article how you could convert shapefile (.shp) to KML file for use in Google Earth or Google Maps. Many government entities release some portion of their GIS data for public...
View ArticleHow to track website with multiple Google Analytics accounts
We have built the product that our clients can easily build website and feed content into it without requiring any technology background. Our client is using Google Analytics to measure user...
View ArticleWhy is Facebook not reading OG tags?
I have all open graph tags rendered properly in my web page even though Facebook wasn’t reading those OG tags. I used Facebook debugger tool to see what Facebook sees exactly when it scrapes my web...
View ArticleFree tools to compare .net assemblies
There are various tools available to compare .net assemblies. Most of them are paid version or requires lot of efforts to find code level differences between two assemblies or DLLs. If you want to...
View ArticleHttpCompileException error when browsing asp.net web application
If you setup a new asp.net web application on new application server, you may encounter following error when you browse your asp.net web application. If you look at the error message, it says that it...
View ArticleUseful queries when troubleshooting performance issues in SQL Server
Here are the some of the queries which are very useful when troubleshooting performance issues in SQL Server. This query will return actual execution plan of a given stored procedure. select...
View ArticleHow to grant permission to domain account to manage windows service
Domain account would need some special permission to interact with windows service if web application is setup to run under domain or service account and web application needs to interact with windows...
View ArticleUseful PowerShell Commands
Below is the list of PowerShell commands that you will find very useful if you are using PowerShell scripting to automate various tasks and if you are in DevOps. Get the registry property values using...
View ArticleInvoke-Command with -UseSSL
PowerShell Remoting uses Windows Remote Management (WinRM), which is the Microsoft implementation of the Web Services for Management (WS-Management) protocol, to allow users to run PowerShell commands...
View ArticleWhiteSource integration with TeamCity
WhiteSource is a tool which automatically detects all open source components in your code and also alerts if any of those components has security vulnerabilities. This tool can be used to enforce your...
View ArticleHow windows authentication works with IIS (Http.sys, Kerberos, NTLM)?
IIS sits on top of HTTP.sys, which is the kernel mode driver in the Windows network stack that receives HTTP requests. IIS picks up requests from http.sys, processes them, and calls http.sys to send...
View ArticleAdd TDE encrypted database to an Availability Group
You will see below error when you try to add database to availability group if database is TDE encrypted. This is also an issue when you restore TDE enabled database and then you try to add it back to...
View ArticleHow to run Fortify Static Code Analyzer for .Net Code
Fortify is a set of software security analyzers that search for violations of security specific coding rules and guidelines in a variety of languages. It finds the security issues early in the...
View Article