Skip to main content

Posts

Showing posts from 2011

Custom Pop Up Helper for ASP.MVC

I was working on an ASP.MVC project this week and needed to implement a modal pop up window, simmilar to Jquery UI . After unsuccessfully spending sometime trying to find a solution online, I wend ahead and wrote an HTML helper. Hope this helps out fellow ASP.MVC'ers out there. Solution (Full Solution File download:  https://sites.google.com/site/tarikublogfiles/ ) 1- Download Jquery UI from http://jqueryui.com/download 2- Link Jquery UI scripts and CSS on ASP.MVC master page or any page you want the pop up 10 < script src ="../../Scripts/jquery-1.4.1.js" type ="text/javascript"></ script > 11 < script type ="text/javascript" src ="../../Scripts/JqueryUI/jquery-1.4.4.js"></ script > 12 < script type ="text/javascript" src ="../../Scripts/JqueryUI/external/jquery.bgiframe-2.1.2.js"></ script > 13 < script type ="text/javascrip