How to enable ajax when deriving from System.Web.UI.WebControls.WebControl on controls that are crea

Posted by Dave on Stack Overflow See other posts from Stack Overflow or by Dave
Published on 2010-02-26T07:33:01Z Indexed on 2010/04/11 3:03 UTC
Read the original article Hit count: 332

I've built a class that derives from System.Web.UI.WebControl. It basically renders pagination links (same as what you see on top of GridView when enabled) for use above a repeater.

I'm creating some anchor tags explicitly inside my nav control obviously, but they don't perform ajax postbacks. My understanding is that ajax requires POSTS to work right? Well, these would be GETs which I think is the problem.

Is there a way to achieve what I'm trying to do?

Thanks!

© Stack Overflow or respective owner

Related posts about c#

Related posts about system.web.ui.webcontrols