• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

what happens after you pass your parameters along with your submits

 
Ranch Hand
Posts: 132
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI all:
just a quick question..what happens when a user submits a parameter along with a submit...

i see like the parameters have been mixed with unrecognizable strings lin the status bar of the IE browser...

someone cares to explain??

Thanks..many thanks..
 
Ranch Hand
Posts: 82
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
is it a Post or Get method?
 
Ranch Hand
Posts: 249
Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This may not be 100% complete, but the coding you see is the encoding of the submitted data -- a ? to show the parameters are starting, the name of the parameter and then = value of the parameter, a & is used to show start of a new parameter. Often escape characters are inserted for certain other characters (for instance a %20 is put in for a space).
 
Stefan Bell
Ranch Hand
Posts: 82
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the reason i asked about a get or post was the get will automatically put the parameters in the url but if it is a post you have to create a query string to add to the url. I don't know if they url will look any different between the two so i was going to go look at some of my pages using both and see if any strange characters were added to one or the other. But %20 and such are not unusual, if that is what they were referring to.
 
Ranch Hand
Posts: 1312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by dog lin:
HI all:
just a quick question..what happens when a user submits a parameter along with a submit...

i see like the parameters have been mixed with unrecognizable strings lin the status bar of the IE browser...

someone cares to explain??

Thanks..many thanks..




Because web browser MUST have consistency of data for sent to server.
Data encoded by browser before send data to server.
 
reply
    Bookmark Topic Watch Topic
  • New Topic