-
What does this means?
String id = request.getParameter("itemID");
String buttonPressed = request.getParameter("Submit");
String updatePressed = request.getParameter("input");
String quantity = request.getParameter("Sum");
Can anyone tell me wat does getParameter means??? Thank you....
-
-
What's with this sudden influx of JSP related questions? It's scary!
Anyway, I'll do the obligatory and point you here:
http://www.google.co.uk/search?hs=DR...G=Search&meta=
I believe that the request.getParameter simply looks at the URL and extracts a passed parameter - for example
URL = www.cr3ation.co.uk/index.jsp?itemID=539
String id = request.getParameter(itemID");
Result : id becomes 539.
cr3ative
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks