Neither of those has anything to do with any GET vars. request.get_vars.id represents an "id" variable passed in the query string of the URL.
On Monday, April 21, 2014 12:19:56 PM UTC-4, Sharon Correll wrote: > > Yes, using request.get_vars.id solved that problem. And it turns out that > I was confusing it by using different form-names, so the modification is > now happening as expected! Hurray, thanks for your help. > > Just to clarify, when I I look at the HTML I see: > > <form> > ... > <div style="display:none;"> > <input name="id" type="hidden" value="*12*" /> > <input name="_formkey" type="hidden" value= > "3d7c7125-9223-4dc4-ae9f-e10efeb3149b" /> > <input name="_formname" type="hidden" value="langResource/*12*" /> > </div> > </form> > > > The ID 12 is in there twice, once as the value of the id <input> and once > as part of the value of the _formname <input>. So does one of these <input> > structures generate the get value and the other the post value (as a result > of submitting the form)? > > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

