I believe that the content from the url will be cached (possibly for a really long time), so you should be using a static url.
If you want to add dynamic content in there then I'd make an AJAX request and replace the content of a div. Could be missing something, but this is my understanding (and what I've assumed where I'm running shindig) Tim Wintle On Mon, 2008-11-10 at 08:11 -0500, Tulip, Nick wrote: > Can anyone help me figuring out how to pass an initial list of url > parameters to the iframe? > > Gadget content is of type URL and what I want is for Shindig to append a > list of parameters to the gadget's content url > (http://portal/gadgets/data/data_gadget.aspx?start=1&end=2) > > Gadget XML: > > <?xml version="1.0" encoding="UTF-8" ?> > <Module> > <ModulePrefs title="__MSG_title__" > description="__MSG_desc__" > directory_title="__MSG_gTitle__" > height="270" > render_inline="never"> > <Require feature="views"/> > <Require feature="tabs"/> > <Require feature="dynamic-height"/> > <Require feature="setprefs"/> > </ModulePrefs> > <UserPref urlparam="start" name="start" datatype="hidden" > default_value="1"/> > <UserPref urlparam="end" name="end" datatype="hidden" > default_value="2"/> > <Content type="url" > href="http://portal/gadgets/data/data_gadget.aspx?start={START > PARAMETER}&end={END PARAMETER}" /> > </Module> > > Thank you for any help.

