Greetings:
The following line of code doesn't seem to be working, any ideas
record = db(db.bike.bike_identifier != "").select()[0]
assert(record != None)
form = SQLFORM(db.bike, record, showid=False)
form.add_button("Print_Tag", URL("tagprint",
args=form.vars.bike_identifier))
When i press the button, I do got to "tagprint", but my request.vars(0) =
none
am I passing the parameters incorrectly? --

