After a long time, I decided to write something again. My job has been keeping me quite busy, but I will try to post stuff more often. Anyway, last month I moved my website and my blog from a Linux…
ASP.NET 4.5 Hosting :: ASP.NET 4.5 Page Inspector
Page Inspector is a new tool that brings browser diagnostics tools into Visual Studio and provides an integrated experience between the browser, ASP.NET, and source code. Page Inspector enables you to easily quickly diagnose issues. Using Page Inspector, you can…
Windows 2012 Hosting :: How to Improve Windows 2012 Cluster High Availability
Determined to make Windows Failover Clusters as resilient as possible, Microsoft has once again made significant improvements to its quorum mechanisms in Windows Server 2012. The Dynamic Quorum Management option allows the cluster to dynamically adjust the quorum (or majority)…
ASP.NET 4.5 Hosting :: Working with JIT in .NET 4.5 Framework
Multicore JIT is a great new feature in .NET Framework 4.5. Multicore JIT parallelizes the some of the JIT compilations that happens on the start of the application, Historically .NET FW has used the Ngen Native Image Generator for parallelization.…
ASP.NET 4.5 Hosting :: Upload Multiple Files Using the Native .Net FileUpload Control
ASPX implementation Firstly, create a new website and make sure your site is targeting .Net 4.5 (I’m not going to delve into how you would do this, the resources available here will be more than enough to get you going).…
ASP.NET 4.5 Hosting :: New Features ASP.NET 4.5 – Strongly Typed Data Controls in ASP.NET 4.5
New ASP.NET 4.5 introduces many new and great features, one of them is deals with the framework’s Web Forms technology. In previous versions of ASP.NET, if you wanted to display data-bound values in a control, you needed to use a…
ASP.NET Hosting Tips :: How to Use Tiny MCE Rich Text Editor in ASP.Net
In this article I’ll be explaining how to add Tiny MCE Rich Text Editor in ASP.Net Web application. Download TinyMCE Editor To start with you need to download the Tiny MCE Editor from the Tiny MCE website using the link…
ASPHostPortal.com Expand Further into Asia with New Data Center in Singapore
ASPHostPortal.com is a premiere web hosting company that specialized in Windows and ASP.NET-based hosting, announces their global expansion into Asia with a new datacenter location in Singapore. Advanced Windows 2008/R2 hosting and SQL hosting are available in the new Singapore-based…
ASP.NET 4.5 Hosting :: Friendly URLs in ASP.NET 4.5 Web Forms
In the recent update of ASP.NET, Microsoft released support for Friendly URLs in ASP.NET Web Forms. It is based on the concept of Routing. But, we don’t need to deal with route table to manually add the routes to be…
ASP.NET Hosting :: How to Start/Stop Windows Service from ASP.NET Page
Here is tutorial about how to start/stop windows service from asp.net page. Here are the important points to accomplish: 1. You need to add System.ServiceProcess reference in your application. This namespace holds ServiceController Class to access the window service. 2.…