Latest posts on tagged on "MVC"

Simple multi select dropdown example using jQuery in asp.net

13 December 2016

In this article, I will show you how to implement multiselect dropdown in asp.net c#. For this, I used chosen jQuery plugin. It will work on the jQuery framework, both jQuery is registered in the page by cdn.

How to insert data using stored procedure in asp.net mvc dapper example?

8 December 2016

In this article, I will show you how to insert data and get a return value Reference ID from stored procedure in c# asp.net mvc dapper. The reference Id will be generated from database and it is the combination of the first four letters of the ItemName and Itemid.

Angularjs multiple file upload using jQuery Ajax in asp.net mvc

29 November 2016

In this article, I will show you how to upload image using Angularjs. The generic handler helps to upload multiple files using jQuery, user click the upload button, the jQuery Ajax call the server side UploadHandler.ashx.

How to implement Login using Ajax in asp.net mvc?

28 November 2016

In this article, I will show you how to implement Login using jQuery $ajax() with example. The mvc Ajax call to controller, sent with user credentials in an Ajax request.

How to create a json file from c# object in asp.net?

25 November 2016

In this article I will show you how to make a json file from c# object using asp.net mvc. When user click the button event, the jQuery ajax call the server side mvc action method CreateJson().

Asp.net alert message from controller using JavaScript

24 November 2016

In this article I will show to show JavaScript alert message in asp.net from mvc Controller. The message from the controller displayed as alert message using ViewBag. It will simply return alert on pageload.

Mvc load partial view jQuery Ajax with example

20 November 2016

In this article, I will show you when the user clicks the link button comments, I want to load partial view in a popup via jQuery Ajax request...