What Happens when the index.jsp Page is Requested by the Client, if this page included instance variable and included in another jsp page. .
A JSP Page, Include.jsp, has a Instance Variable “int a”, now this Page is Statically Included in Another JSP Page, index.jsp, which has a Instance Variable “int a” Declared. What Happens when the index.jsp Page is Requested by the Client. Compilation error, as two variables with same name can’t be declared. This happens because, when … Read more