muhammad farhaan


{ City } akola
< Country > india
* Profession *
User No # 3505
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 28
Users Marked my Answers as Wrong # 5
Questions / { muhammad farhaan }
Questions Answers Category Views Company eMail




Answers / { muhammad farhaan }

Question { 14863 }

What are JSP scripting elements?


Answer

Scriptlet, expression and declaration are called JSP
scripting elements.

Is This Answer Correct ?    20 Yes 4 No

Question { 13775 }

Is it possible to call servlet with parameters in the URL?


Answer

If HTML form submitted with Get request to servlet URL
which is defined in action attribute of HTML form then form
values are sent as a name value pairs appended at the end of
URL calling servlet. List of parameters is separated by ?
sign with rest of URL and paramter are append to the list of
paramter as name value pair separated by & sign. You can
manually attach the paramters as a list of name value pairs
separated by & sign at the end of query string followed by ?
sign.
The maximum length of URL changes across the browser
generally you can not send more than 255 characters long URL
string so keep in mind that when you send paramters with URL
string then whole length of URL must not be more than 255
character.

Is This Answer Correct ?    8 Yes 1 No