If you’re ASP.NET developer, you’re concern about the User Interface/Design of your application and you notice Metro/Modern UI is neat and great UI, but How I can make my ASP.NET application look like Windows 8 application? Can I do that?…
Add elegant style to ASP.NET WebForms GridView control
We are developers whom use the left side of our brains that why we suck in designing; we’ll use the already exist styles while developing ASP.NET web application, that what we’ll do if we don’t have a designer in our…
ASP.NET Expressions
ASP.NET Expression is written inline surrounded with <% %> in other words you will write them with your markup in .ASPX files for specific task, for example if want to access a connection string there an expression for that <%$…
ASP.NET Page Lifecycle in Plain English
ASP.NET Page Lifecycle is very important piece of knowledge every ASP.NET developer must know, and unfortunately some of ASP.NET developer out there don’t know and they think it’s not important to know. Let’s dig in and let’s examine ASP.NET Lifecycle…
Add AJAX effect to ASP.NET Webforms postbacks
If you want to add AJAX effect to ASP.NET webforms full postbacks, add this meta tags to your page, or even better add it the your master page. <meta content="blendTrans(Duration=0.2)" http-equiv="Page-Enter" /></meta> <meta content="blendTrans(Duration=0.2)" http-equiv="Page-Exit" /></meta> This effect will…
Ready….steady….Orchard
Today I’ve decided to use Orchard to build a site, but before getting deeper let me quote What is Orchard? Orchard is a free, open source, community-focused project aimed at delivering applications and reusable components on the ASP.NET platform. Orchard…
Enable ASP.NET 32-bit application on 64-bit environment
If you’re deploying 32-bit ASP.NET application on 64-bit environment, you can enable 32-bit in IIS, you have 2 ways to do it by: Set Application Pool Defaults. Change specific Application Pool Advanced Settings. Here is the setting you need to…
Enable ASP.NET 32-bit application on 64-bit environment
If you’re deploying 32-bit ASP.NET application on 64-bit environment, you can enable 32-bit in IIS, you have 2 ways to do it by: Set Application Pool Defaults. Change specific Application Pool Advanced Settings. Here is the setting you need to…
HowTo: Register ASP.NET Version to IIS
If you developing ASP.NET 4.0 application & the registered .NET version on IIS is 2.0 or 3.5, there will be error that Application .NET framework version not compatible with IIS registered .NET version. So how to solve this problem, Open…
HowTo: Register ASP.NET Version to IIS
If you developing ASP.NET 4.0 application & the registered .NET version on IIS is 2.0 or 3.5, there will be error that Application .NET framework version not compatible with IIS registered .NET version. So how to solve this problem, Open…