Showing posts with label Asp.net MVC. Show all posts
Showing posts with label Asp.net MVC. Show all posts

Wednesday, 20 July 2016

Installing Asp.net Core

Steps To Install Asp.net Core     Step 1. Before Installing Asp.net Core Let Fulfill Its Prerequisites As Below - First you need to Install Visual Studio 2015 . You Can Download Free Visual Studio Community Edition From Link below - Download Visual Studio 2015 For...

Friday, 3 June 2016

Difference Between MVC and webforms

The main advantages of The Official Microsoft ASP.NET Site MVC are: Enables the full control over the rendered HTML. Provides clean separation of concerns(SoC). Enables Test Driven Development (TDD). Easy integration with JavaScript frameworks. Following the design of stateless...

Tuesday, 17 May 2016

Tempdata vs Session in Asp.net MVC

Why Sessions are Not Recommended to use in MVC One of the Fundamental Principal of Asp.Net MVC Framework is  Web is Stateless And AspDotNet MVC is Stateless AspDotnet WebForms is a try to make Stateful Modal But Its difficult to main it as this modal does not exist . Sessions Create lot of load on Cache that was biggest problem . Using Session in AspDotNet MVC is like...

Tuesday, 28 April 2015

ASP.NET MVC Action Return View Not Changing URL

The return View(.......) in Action of Controller is the statement that we use to return the view View for a Particular Controller Request . But Return view will return the view exactly you want and render the view but it will not change or target the user to target url  . The simple solution is below - Code For an Action - [HttpPost] public ActionResult Start(SomeViewModel...

Wednesday, 11 February 2015

HTTP Error 500-22 - Internal Server Error The page cannot be displayed because an internal server error has occurred

Now At 11:47 PM I am going to write about how to solve HTTP 500.22 - Internal Server Error . This error is really very Bad Boy . It only display Error Message and does not give any detailed information about error as we don't normally allow for that . So Now I am going to give...

Sunday, 25 January 2015