In a publishing site, I want to create a webpart that display the result of a query with a custom display (a kind of rotator).
As the goal of the web part is to be reusable and must be quite simply configurable by the user, I'm wondering what are the pros and cons of the following approaches :
- custom web part that produces the html in a "hard-coded" way. Add tool pane to allow the user to setup data
- content query web part with a xslt transformation
- silverlight web part with a custom option pane within the webpart
I feel the 2nd solution may be better because the whole setup of the webpart is already here, but I fear a bit the xslt will be quite painful.
thanks in advance for your feedbacks