Latest posts on tagged on "MVC"

Datalist autocomplete from database in jQuery

7 November 2016

In this article I will show you how to use datalist to create jQuery autocomplete multiple values from database. You should make an Ajax call to server method GetCompanyList() and fetch company name and city...

Display image for asp.net mvc form validation using css class

7 November 2016

In this article, I will show you custom validation in mvc, displaying image using css class for error message. The field-validation-error css class are applied to the ValidationMessageFor() and Validation-Summary-errors css are applied to the ValidationSummary().

Mvc-show error message along with image

6 November 2016

In this article, I will show you how to display images along with Validation message using dataannotations in mvc asp.net c#.

infinite scroll jquery example

6 November 2016

In this article, I will show you how to add infinite scroll load content while scrolling with jQuery Ajax using asp.net MVC without using third party plugins. On scroll event jQuery call GetData() function and return records as a json format using JsonResult.

What is an area in asp.net mvc?

26 October 2016

If Application contains a large number of controllers it is difficult to manage. The asp.net area simplifies large mvc web application in to smaller groupings.