How an asynchronous request for server-side validation works

How can I asynchronously check the database for a value in a form field?

For example, I have a text box in which users enter the user ID to check if it is available or not, I want to check the input data against the database table asynchronously without refreshing the page. How can i do this?

Thanks in advance

+4
source share
1 answer

In ASP.NET MVC 3, you can use the [Remote] attribute.

+7
source

Source: https://habr.com/ru/post/1402318/


All Articles