On Sat, Dec 4, 2010 at 6:22 AM, clockdva242 wrote: > i have a form and a list in a page > > when i call the action of the form (insert for example), i loose the params > in the url > > how can i keep that params ? >
URL parameters are not magically re-submitted when you submit a form. The form needs to contain any parameters you want sent, either as GET parameters in the form action's submit URL (meh, and I'm not sure if it'd always work) or as hidden parameters. Dave