C# Handling Excel-Files (*.xls, *.xlsx) in Web Applications ICSharpCode.SharpZipLib.Zip.ZipException: EOF in header I'm working on a SaaS application in ASP.NET MVC, which takes your KPIs and presents them to you in clear overviews and graphs, so you can see at a glance, how your business is doing and what needs to change. This is for SMEs, which to a
ASP.NET-MVC Request Authorization in ASP.NET Web API in Mono Few days ago I was struggling to set up authorization on requests to my Web API. The major Problem was missing sessions. You can read more here: Request Authorization in ASP.NET Web API. After I set it up, it was running and everything seemed great until I found out
ASP.NET-MVC Request Authorization in ASP.NET Web API When you use ASP.NET Web API as a back-end for your JavaScript heavy Single Page Application (SPA), you might want to check who is performing requests, before you answer with a result. In my case, the different permissions are a bit bulky and I'm storing them in
ASP.NET-MVC What to Consider when running ASP.NET MVC 4 in Mono I'm fighting for the last 2 days to deploy my ASP.NET MVC 4 application to a Linux VM running Mono again. - Again because it already worked, but in the meanwhile Microsoft updated the MVC 4 library and something broke (read more: Microsoft Asp.Net MVC Security
C# Always check the ModelState Ever came across weird behavior in your ASP.NET Views? - I did already several times, and this is what I've learned: Always check the ModelState. Most of you probably remember to clear the ModelState when you modify _POST_ed values. But I had to find out, that