asp

ASP .NET Interview Questions and Answers

In this article, I will try to cover ASP .NET interview questions which you must know before going for an interview, this is useful for both freshers and experienced candidates 1. What is ASP? Active Server Pages (ASP), also known as Classic ASP, is Microsoft’s server-side technology, which helps in creating dynamic and user-friendly Web …

ASP .NET Interview Questions and Answers Read More »

The located assembly’s manifest definition does not match the assembly reference

Looking for the solution. Yes you are at the right place. Once I also faced the same issue when I was working on a MVC project, I got the error states that “The located assembly’s manifest definition does not match the assembly reference” . When I ran the solution I saw the YSD (yellow screen of …

The located assembly’s manifest definition does not match the assembly reference Read More »

MVC Simple Model In ASP.NET

In our previous article we have learnt basics of MVC , now in this article we will learn how to make simple model In MVC. Create New ASP.NET MVC 4 Web Application . Select Internet Website as template. Select ASP.NET as  View Engine Right Click on the model -> Add New Item ->Class -> Movies.cs

Avoid multiple call to AuthorizeCore in MVC

AuthorizeCore in MVC In MVC AuthorizeAttribute Class is another cool feature that makes it easy to add authentication at the Controller level. In AuthorizeAttribute class we have AuthorizeCore function, it specifies that access to a controller or action method is restricted to users who meet the authorization requirement. We can override AuthorizeCore  function as per our authorization logic. …

Avoid multiple call to AuthorizeCore in MVC Read More »