Browse by Tags

All Tags » Javascript (RSS)

ASP.NET Bundling/Minification and Embedded Resources by imran_ku07

Introduction: If you want to share your application resources(like css, javascript, images, etc) between different projects then embedded resource is a great choice. Embedded resource is also good for component/control writers because it allows component...

Advanced Options of ASP.NET Bundling and Minification by imran_ku07

Introduction: Rick Anderson has written a great introduction to ASP.NET Bundling and Minification at here . In addition to the options presented by Rick, there are some other features in System.Web.Optimization framework which is also important for developers...

Bundling and Minifying Inline Css and Js by imran_ku07

Introduction: Application performance is the very important factor for an application success. Yahoo's Best Practices for Speeding Up Your Web Site is a great resource for increasing your application performance. Out of these practices, 'Putting Stylesheets...

Concurrent Requests In ASP.NET MVC by imran_ku07

Update: Now, ASP.NET MVC 3 support Session-less Controller. Introduction: According to Levi Broderick(one of the awesome ASP.NET MVC team player), concurrent requests will/may be supported in ASP.NET MVC 3 . Also Rick Anderson (another genius ASP.NET...
Filed under: , , , ,

Disabling Client Side Validation For Disabled Input Controls In ASP.NET MVC by imran_ku07

Introduction: Client side validation always saves a lot of time and bandwidth, because it take place on the client side and the user is immediately informed that they've gone wrong in filling out the form before the form is posted back to the server....

Distinguishing Between Refresh And Cached Page by imran_ku07

Introduction: Caching (a technique of storing an in memory copy of some information that’s expensive to create) increases both performance and scalability. Therefore using caching users can receive the response very quickly. But sometimes there is a need...
Filed under: , , , ,

Using Rich Text Editor (WYSIWYG) in ASP.NET MVC by imran_ku07

Introduction: In ASP.NET MVC forum I found some question regarding a sample HTML Rich Text Box Editor(also known as wysiwyg).So i decided to create a sample ASP.NET MVC web application which will use a Rich Text Box Editor. There are are lot of Html Editors...
Filed under: , , , ,

Image Preview in ASP.NET MVC by imran_ku07

Introduction : Previewing an image is a great way to improve the UI of your site. Also it is always best to check the file type, size and see a preview before submitting the whole form. There are some ways to do this using simple JavaScript but not work...
Filed under: , , , ,
More Posts