Thursday, November 22, 2018

Specified argument was out of the range of valid values. Parameter name: site

Specified argument was out of the range of valid values. Parameter name: site While development many time we face this issue.It come generally when we change pc or laptop ,we just install visual studio and sql server and start our project.We forget to enable IIS setting so...

Monday, November 19, 2018

Action Filters in asp.net MVC

What are Action Filters in asp.net MVC? ASP.NEt MVC provides a very clean way of injecting the pre-processing and post-processing logic for actions and controllers. We can put the pre-processing and post-processing logic is by decorating the actions with attributes which will invoke an attribute class implementing  the filter's logic. For...