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…
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…