Maximilian
Lifer
If I make an HTML form and its only purpose is to store a single value to be sent to the server is that a bad idea?
Ive made fallback session management for people who disable cookies. I think URL rewriting is the term for it. The server sends the client a token (jsessionid) as part of the URL, the client returns it to the server as a form parameter. I could have it be returned to the server as part of the request URL but storing it as a parameter just seemed cleaner and it wont interfere with any commands the client sends.
Its just the name "form" kinda suggests to me something to be filled in, login form and the like.
Any takes on this?
Ive made fallback session management for people who disable cookies. I think URL rewriting is the term for it. The server sends the client a token (jsessionid) as part of the URL, the client returns it to the server as a form parameter. I could have it be returned to the server as part of the request URL but storing it as a parameter just seemed cleaner and it wont interfere with any commands the client sends.
Its just the name "form" kinda suggests to me something to be filled in, login form and the like.
Any takes on this?