Posts

Showing posts from June, 2024

java

Image
 pract 6 implicit object <%@ page language = "java" contentType = "text/html; charset=UTF-8" pageEncoding = "UTF-8" %> <! DOCTYPE html> < html > < head > < meta charset = "UTF-8" > < title > Implicit Object Example </ title > </ head > < body > < h1 > Implicit Object Example </ h1 > <%-- Implicit Object: request --%> < p > Request URL: <%= request.getRequestURL() %> </ p > <%-- Implicit Object: response --%> < p > Response Character Encoding: <%= response.getCharacterEncoding() %> </ p > < p > Welcome, <%= session.getAttribute( "username" ) %> ! </ p > <%-- Implicit Object: application --%> <% application.setAttribute( "visitors" , 1000); %> < p > Total Visitors: <%= application.getAttribute( "visitors" ) %...