views:

387

answers:

3

Question is it possible to have a .ashx or webservice return a user control rendered? if so how would i do this?

+3  A: 

This post from our beloved Scottgu might help you :)

Mathlec
Spot on my friend! thanks alot
BlackTea
A: 

If your not using MVC, you can get the HTML of a control at bind time by using the RenderControl method.

Link

smercer
A: 

I haven't tried this, but you might be able to do this by calling the RenderControl method.

SLaks