tags:

views:

87

answers:

1

I want to know how to display an aspx page in a popup using jquery

+2  A: 

You want to use a partial instead of a full page most likely and then use the get method as outlined here: http://docs.jquery.com/Ajax. Then you can put the contents of your get request into a jqModal modal window as defined by this page: http://dev.iceburg.net/jquery/jqModal/

Andrew Siemer
What is the best way to perform a GET with ASP and jQuery? Would you create a handler to return JSON, would you use a [WebMethod] that returns JSON [ I'm biased to use JSON ;) ] or what other methods?
jamiebarrow
You might find this useful: http://forums.asp.net/t/1524930.aspx
Andrew Siemer