April 2010 - Posts

5
Comments

Understanding 400 Bad Request Exception by imran_ku07

Introduction: Why I am getting this exception? What is the cause of this error. Developers are always curious to know the root cause of an exception, even though they found the solution from elsewhere. So what is the reason of this exception (400 Bad...
Filed under: , , , ,
1
Comments

The type 'XXX' is defined in an assembly that is not referenced exception after upgrade to ASP.NET 4.0 by imran_ku07

Introduction : I found two posts in ASP.NET MVC forums complaining that they are getting exception, The type XXX is defined in an assembly that is not referenced , after upgrading thier application into Visual Studio 2010 and .NET Framework 4.0 at here...
Filed under: , ,
6
Comments

Server Controls in ASP.NET MVC without ViewState by imran_ku07

Introduction : ASP.NET Web Forms provides a development environment just like GUI or windows application and try to hide statelessness nature of HTTP protocol. For accomplishing this target, Web Forms uses ViewState (a hidden field) to remove the gap...
Filed under: , , ,
2
Comments

ASP.NET MVC AND TOOLBOX by imran_ku07

Introduction : ASP.NET MVC popularity is not hidden from the today's world of web applications. One of the great thing in ASP.NET is the separation of concerns, in which presentation views are separate from the business or modal layer. In these views...
Filed under: , ,
26
Comments

Reading All Users Session by imran_ku07

Introduction : InProc Session is the widely used state management. Storing the session state Inproc is also the fastest method and is well-suited to small amounts of volatile data. Reading and writing current user Session is very easy. But some times...
Filed under: , ,
37
Comments

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: , , , ,
1
Comments

Editing Routes in ASP.NET MVC by imran_ku07

Introduction : Phil Haack's had written two great articles about Editable Routes, Editable Routes or Editable Routes Using App_Code .These Article are great. But if you not need to unit test your Routes and don't care about restart Application Domian...
Filed under: , ,
7
Comments

Session and Pop Up Window by imran_ku07

Introduction : Session is the secure state management. It allows the user to store their information in one page and access in another page. Also it is so much powerful that store any type of object. Every user's session is identified by their cookie...
Filed under: , ,
More Posts