Questions tagged [pagecontext]
18 questions
0
votes
0 answers
Using content from different sources on a page
I have a page with mixed sources of content. The top half of it is hard coded html with values echo'd from a db like so:
Part Number: pn"; ?>"/>
Part Nomenclature:

jhcorsair
- 17
- 3
0
votes
1 answer
pagecontext request dispatcher servlets
I am trying to forward a request using "RequestDispatcher". I have JSP pageContext object.
I tried to forward my request to my servlet "MyServlet" using the following code. I set some attributes in my request and forwarded it. But i am not able to…

Kalidha
- 21
- 4
-1
votes
1 answer
Difference between session from request and session from PageContext
Is there a difference?
PageContext pageContext = (PageContext) getJspContext();
HttpSession session = pageContext.getSession();
=session through PageContext
PageContext pageContext = (PageContext) getJspContext();
HttpServletRequest request =…

Jartyyy
- 13
- 5