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?…
Fix MaxLength property for ASP.NET Multiline Textbox
If you try to change the TextMode property of ASP.NET TextBox control to Multiline and set the MaxLength property it’ll not work and user can insert as much characters as he/she want. WHY? Because when you put TextBox in your…
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…
Technology U-Turn
Technology U-Turn is a terminology I invented that means when a technology leave the direction and take a new one then get back to the old one, actually I invented this term when I realized till now there are two…
Using Notification in ASP.NET WebForms
I always asked myself, how can I show a neat notification and call it from Page code behind? I want to call this notification after doing something in code behind, for example notify user that “Record Inserted Successfully” and this…
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…