Developing a REST Web Service using C# – A walkthrough
REST stands for Representational State Transfer. The term was introduced by Roy Fielding in his...
C# Extension Method
An extension method has simplified calling syntax. It represents static methods as instance methods. An...
How create a OFT file for HTML?
OFT file is a Outlook Template of an email. If you need to send a...
Reading multiple excel sheets with different worksheet names
I would like to know how I can read multiple excel worksheet with different worksheet...
Download page from web with encoding
Usually you can use WebClient to download a page from web but no always it’s...
What is the JavaScript Equivalent of print_r in PHP?
What is the JavaScript Equivalent of PHP print_r() function? In other words, how you can...
How to Detect Browser (and browser version) using JavaScript
Browser (and browser version) detection is an “all time classic” development requirement. jQuery.browser WAS an...
Render LocalReport using Microsoft ReportViewer DLL Version 11.0.3366.16
I downloaded the latest Microsoft ReportViewer from the link below and installed it. I want...
Mime type for Microsoft Office 2007-2010
.xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xltx application/vnd.openxmlformats-officedocument.spreadsheetml.template.potx application/vnd.openxmlformats-officedocument.presentationml.template.ppsx application/vnd.openxmlformats-officedocument.presentationml.slideshow.pptx application/vnd.openxmlformats-officedocument.presentationml.presentation.sldx application/vnd.openxmlformats-officedocument.presentationml.slide.docx application/vnd.openxmlformats-officedocument.wordprocessingml.document.dotx application/vnd.openxmlformats-officedocument.wordprocessingml.template.xlam application/vnd.ms-excel.addin.macroEnabled.12.xlsb application/vnd.ms-excel.sheet.binary.macroEnabled.12
[A]System.Web.WebPages.Razor.Configuration.HostSection cannot be cast to… web.config issue
I have a problem like this on server [A]System.Web.WebPages.Razor.Configuration.HostSection cannot be cast to [B]System.Web.WebPages.Razor.Configuration.HostSection. Type...
C# 6 and Visual Studio 2015
I created some examples of new C# with Visual Studio 2015. You can download and...
How to Enable XP_CMDSHELL using SP_CONFIGURE
In this tip we will take a look at the step to follow to enable...
How to Disable XP_CMDSHELL using SP_CONFIGURE
It is always considered as a best practice to disable XP_CMDSHELL when not in use....
Evaluate an mathematical expression
public class MathEvaluator{ public static void Run() { Eval("(1+2)"); Eval("5*4/2"); Eval("((3+5)-6)"); } public static void...
Using HTTP Methods for RESTful Services
The HTTP verbs comprise a major portion of our “uniform interface†constraint and provide us...
To PUT or POST?
Create, Update and HTTP Idempotence For developers building REST-based APIs, there is a great deal...
Setup FileZilla Server Passive Ports on Windows Server 2012
I prefer to use FileZilla FTP Server above the traditional IIS FTP module. FileZilla comes...
C# Code Snippet – Download Image from URL
This .Net C# code snippet download image from URL. To use this function simply provide...
Check Local IP Address
This example shows how to detect whether a host name or IP address belongs to...
Download Files from Web
This example shows how to download files from any website to local disk. The simply...
ReportViewer: culture, number, color and more
Step 1. Set the “Language” report properties according to your regional requirements. In my case:...
Anonymous View Models in ASP.NET MVC Using Dynamics
The introduction of the dynamic keyword in C# 4.0 allows you to do a lot...
Why does Html.ActionLink render “?Length=4â€
I’m VERY confused as to why this code Html.ActionLink("About", "About", "Home", new { hidefocus =...
