Friday, February 17, 2017

Asynchronous Requests for CRUD operations in Asp.Net MVC

In this post I will show how to use Asynchronous Requests in Asp.Net MVC. To continue this POST lets go through
for better understanding. we will change the above Synchronous post. In this post we can do CRUD operations using Bootstrap Modal, display data using Jquery DataTables and printing, exporting using jquery DataTables buttons.

Output:
According to Microsoft Asynchronous Requests means:
In web applications that sees a large number of concurrent requests at start-up or has a bursty load (where concurrency increases suddenly), making these web service calls asynchronous will increase the responsiveness of your application. An asynchronous request takes the same amount of time to process as a synchronous request. For example, if a request makes a web service call that requires two seconds to complete, the request takes two seconds whether it is performed synchronously or asynchronously. However, during an asynchronous call, a thread is not blocked from responding to other requests while it waits for the first request to complete. Therefore, asynchronous requests prevent request queuing and thread pool growth when there are many concurrent requests that invoke long-running operations.

Wednesday, February 1, 2017

Jquery validator with custom messages

In this post I will show how to use jquery validator with custom error messages.
Containing the How to use Jquery Validator

Output: