Microsoft announces Windows 10 release set for this summer in 190 countries
Microsoft plans to release Windows 10 this summer in 190 countries and 111 languages, the company announced today, though a…
All technologies, only pure source code
Microsoft plans to release Windows 10 this summer in 190 countries and 111 languages, the company announced today, though a…
This article describes a simple implementation of the string search. It can be used for approximate string matching (for more…
Razor is a great way to create views with ASP.NET MVC. One feature I use quite often are custom helpers….
Android and iOS accounted for 96.3 percent of all smartphone shipments in Q4 2014, and coincidentally, 96.3 percent for all…
The first preview release of ASP.NET 1.0 came out almost 15 years ago. Since then millions of developers have used…
I have a very simple solution. If you have a field in database in int format and you want to…
The web is about to get faster thanks to a new version of HTTP – the biggest change since 1999…
IntroductionIf you are a software engineer or IT professional, your group has very likely shown a strong interest in reducing…
We’re excited to announce that CoreCLR is now open source on GitHub. CoreCLR is the .NET execution engine in .NET…
REST stands for Representational State Transfer. The term was introduced by Roy Fielding in his doctorial dissertation. REST is an…
An extension method has simplified calling syntax. It represents static methods as instance methods. An extension method uses the this-keyword…
OFT file is a Outlook Template of an email. If you need to send a newsletter for example, it’s very…
I would like to know how I can read multiple excel worksheet with different worksheet name in c# and with…
Usually you can use WebClient to download a page from web but no always it’s a good way, sometimes the…
What is the JavaScript Equivalent of PHP print_r() function? In other words, how you can “print” a javascript object in…
Browser (and browser version) detection is an “all time classic” development requirement. jQuery.browser WAS an excellent solution, but it was…
I downloaded the latest Microsoft ReportViewer from the link below and installed it. I want to be able to export…
.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
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 A originates from ‘System.Web.WebPages.Razor, Version=2.0.0.0,…
This post describes some of the tips and tricks that one may find useful when solving URL-based problems for their…
I created some examples of new C# with Visual Studio 2015. You can download and view them on GitHub (https://github.com/erossini/CS6-Preview)….
In this tip we will take a look at the step to follow to enable or disable XP_CMDSHELL using SP_CONFIGURE…
It is always considered as a best practice to disable XP_CMDSHELL when not in use. A database administrator can disable…
public class MathEvaluator{ public static void Run() { Eval(“(1+2)”); Eval(“5*4/2”); Eval(“((3+5)-6)”); } public static void Eval(string input) { var ans…
The HTTP verbs comprise a major portion of our “uniform interface†constraint and provide us the action counterpart to the…