Depends on how the container supports gadgets.prefs_. In iGoogle's case for example, the settings are stored with the settings for iGoogle. For now simplecontainer could (but doesn't yet) store them in a cookie. For type url gadgets, the settings aren't stored at all.
On Feb 18, 2008 11:18 PM, Arun Kumar <[EMAIL PROTECTED]> wrote: > Assume that I have a gadget with xml as: > > <?xml version="1.0" encoding="UTF-8" ?> > <Module> > <ModulePrefs title="Preferences for __UP_myname__" height="250" /> > <UserPref name="mychoice" display_name="List Params?" datatype="bool"/> > > <UserPref name="myname" display_name="Name" required="true"/> > <UserPref name="mycolor" display_name="Color" default_value="Blue" > datatype="enum"> > > <EnumValue value="Red"/> > <EnumValue value="Blue"/> > <EnumValue value="Green"/> > <EnumValue value="Yellow"/> > > <EnumValue value="Pink"/> > <EnumValue value="Orange"/> > <EnumValue value="White"/> > </UserPref> > > <Content type="url" href="http://www.example.com/params.php"/> > </Module> > > > In I run this gadget and click on settings button, then I will get a > check box, text box and a drop down list. > When I change these fields values and click on Save, to which URL > these values will be posted to? >

