Remapping svc extension in IIS 7 extension handlers
If you open your WCF/ svc file in your localhost through browser and it just display blank page then what might happen is you don’t have handler associated with svc extension To verify it, go to…
If you open your WCF/ svc file in your localhost through browser and it just display blank page then what might happen is you don’t have handler associated with svc extension To verify it, go to…
This is just an information for the users that might not know this feature in SQL Server Management Studio, eventhough I’m sure most of people should have known this feature Basically SQL Server stores all the…
The usage of PIVOT keyword In SQL Server we can transform a horizontal rows to be vertically represented by using Pivot Keyword Run this query to have sample data CREATE TABLE OrderItems(Order_No INT, ProductName VARCHAR(255), TotalQty…
I found a simple collapsible panel developed by a guy called Darren Ingram and I’d definitely recommend it to anyone wanted to implement collapsible panel. His Jquery implementation of collapsible panel is very simple. It just…
After a few months, my website has been down because of someone from Tunisia was proudly hacking my website for his glory without thinking the impact to someone else. well anyway, life goes one and I…
First method is to use the “Using” keyword which is quite clean and simple using (IDisposable obj = new DataTable()) { //do your logic with obj variable } Second method is to use Try and finally…
Normally when you have a UTF8 encoded file then it might have BOM character that will be rendered when you read it using filestream even though when you open the file with the notepad it doesn’t…
Simple function to encode and decode UTF8 character for unicode (this is for IE) Encode utf8bytes= unescape(encodeURIComponent(unicodecharacters)); Decode unicodecharacters= decodeURIComponent(escape(utf8bytes));