Rendering "partial" pages in ASP.Net? (without the <html> and such)

Posted by Earlz on Stack Overflow See other posts from Stack Overflow or by Earlz
Published on 2010-04-12T19:45:24Z Indexed on 2010/04/12 19:53 UTC
Read the original article Hit count: 209

Filed under:
|
|
|

Hello, I am trying to make use of jQueryUI AJAX tabs in my ASP.Net Webforms project.

I have come up against a wall though. For AJAX, you must render only a partial page(no <html> and such elements) by an external URL. How would you best do this in ASP.Net? aspx files require things like a <html> and <head> tag so those wouldn't work so the only thing that comes to mind is using cumbersome ashx files. Am I just over thinking this? Is there an easier way?

© Stack Overflow or respective owner

Related posts about AJAX

Related posts about ASP.NET