Top Solutions

What is Polymorphism in asp.net?

In this article, I describe what is polymorphism and when we use polymorphism in asp.net. polymorphism is one of the object oriented programming. It allows you to invoke derived class methods through a base class reference during runtime.

What is Partial Views in asp.net MVC ?

In this Article, I describe what is partial view in asp.net mvc. Partial views are used to encapsulate reusable view logic and it simplify the complexity of views. We can use one partial view on multilple views , where we need similar kind of view logics.

What is Session and how to use in asp.net MVC ?

In this Article, I describe what is Session and how to use session in asp.net mvc. Session is helpful to access or pass a data from controller to View or one View to controller that mean we can access a session value anywhere in application until user browser is open.

What is TempData and how to use in asp.net MVC ?

In this Article, I describe what is TempData and how to use TempData in asp.net mvc. TempData is helpful to access or pass a data from one controller to another or one action to another. Here I demonstrate how to pass a value from one action to another.