I have an Insert button on the View Page.
On this Insert Button click, there is controller Action Method (InsertUser) that inserts record.
After successful insert i want to diplay the user like a MsgBox that (“Record successfully inserted”) using any plugins…etc.
Appreciate your response.
You want a modal dialogue, or just a notification message?
The simplest way to do it is to stick your confirmation message into e.g. TempData[“ConfirmationMessage”] and have something in your master page render the contents of that if it exists.
If you want a proper modal dialogue you’ll need Javascript. Check out jQuery UI for probably the easiest one:- http://docs.jquery.com/UI/Dialog – you can use the same idea (something in your master page renders the confirmation message), then on the document ready event you have jQuery turn it into a dialogue.