I’m super-excited about ASP.NET 5 and MVC 6! I first taught myself to program in the early 80s. I taught myself again in the mid-90s. Then I started OrcsWeb and spent more time do “systems stuff” (I’m both an MCSE and RHCSA) and “business stuff” (yeah, it takes a lot of time to run a […]
PUT/POST/DELETE Verb Errors On Site
A client was getting errors when using PUT/POST/DELETE verbs on their web application recently. The errors he was seeing were: After some troubleshooting the error was isolated to the fact that WebDav was installed on the server and was intercepting those requests for its own service use. Rather than removing WebDav from the server, we […]
ASP.NET, cytanium, Development/Coding, Hosting, IIS, OrcsWeb, System AdministrationOrchard: Custom Content in Sub-Folders
Orchard doesn’t seem to like anything in it’s web root except for it’s own content. Try it out – create a folder (I created /TestContent/) and then put a test from there (I created test.html) and try to access it. You’ll get a 404 error. Orchard “traps” all requests and effectively kills them if it […]
ASP.NET, CMS, cytanium, Development/Coding, Hosting, IIS, Orchard, OrcsWeb, System Administration, tip, TroubleshootingMVC3, Visual Studio 2010: Error: Microsoft JScript runtime error: Not implemented
Okay, so I’ve started tinkering with MVC3 just to get familiar with what more-and-more people are working with now from a Windows Internet development perspective. I have a development/test VM running Windows Server 2008 R2 so I figured I’d install it there and walk-through some of the online tutorials. Well, right out of the bat […]
ASP.NET, Development/Coding, Hosting, MVC, tip, TroubleshootingLog Parser: Pulling Valuable Data From IIS Logs
Microsoft’s Log Parser is an awesome tool that justifies knowledge, if not even regular use, by both system administrators and web users alike. From the download site: “Log parser is a powerful, versatile tool that provides universal query access to text-based data such as log files, XML files and CSV files, as well as key […]
cytanium, Development/Coding, Hosting, IIS, OrcsWeb, System Administration, tipIIS7 Mime Mappings
For very good reasons, not all extensions are recognized by IIS by default and may return a 404 error when trying to access them from your site. If you have need to add more extensions to be “allowed” – for example if you have embedded font files – you have a few different options. One […]
ASP.NET, cytanium, Development/Coding, Hosting, IIS, OrcsWeb, System Administration, tipAuto-Format VS2010 Source Code
I had to dig up this handy tip earlier so figured I’d repost it – both for myself and for others looking to make their code cleaner without manually respacing and indenting everything. http://www.orcsweb.com/blog/brad/auto-format-vs2010-source-code/
ASP.NET, Development/Coding, Visual StudioResolving a “There is a duplicate ‘system.web.extensions/scripting/scriptResourceHandler’ section defined” Error
People get this error a lot when upgrading an ASP.NET 2.0 application to ASP.NET 4.0. Here is a link to common ASP.NET 4 Breaking Changes: http://www.asp.net/learn/whitepapers/aspnet4/breaking-changes#0.1__Toc256770149 And here is the section that applies to this error: “The workaround for the second scenario is to delete or comment out all the system.web.extensions configuration section definitions and […]
ASP.NET, cytanium, Development/Coding, Hosting, IIS, OrcsWeb, System Administration, tip, Troubleshooting, Visual Studio, WebMatrix, WindowsUsing URL ReWrite to host multiple sites/domains under a single site
Scott Forsyth has a couple of good blog posts with pointers on using URL ReWrite to host multiple sites/domains under a single site: http://weblogs.asp.net/owscott/archive/2010/01/26/iis-url-rewrite-hosting-multiple-domains-under-one-site.aspx http://weblogs.asp.net/owscott/archive/2010/05/26/url-rewrite-multiple-domains-under-one-site-part-ii.aspx
cytanium, Development/Coding, Hosting, IIS, OrcsWeb, System Administration, Windows