Use HtmlHelper to Create jQuery UI Dialogs

Html helpers are good and jQuery UI dialogs are easy to use.

I wonder if I can create HtmlHelperone that makes using dialogs easier. I want to create and use even a simple dialog jQueryUI, you have to put some html and a small piece of javascript.

Instead, I'm trying to create a helper class that will provide me with the same functionality as in System.Windows.Forms.MessageBox.

Is this possible, or are there better ways to do this?

+3
source share
1 answer

You can - I did it :) Its a little dirty, but I have it.

.. mvc, , : http://completedevelopment.blogspot.com/2011/04/learning-mvc-for-web-forms-developer.html

dialogfunctions.js .

+2

All Articles