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?
Edit:
So apparently <html>
and such tags are not actually required. So what differences are there to rendering without the full page headers? Will some controls not work? Why wouldn't they?