encoding url problem
hi experts i want use this program to understand the concept of session cookies
<HTML><HEAD><TITLE>Encoding URLs</TITLE></HEAD>
<BODY>
<B>Example encoded hyperlink: </B>
<% String link= response.encodeURL("Process.jsp");
String button= response.encodeURL("Process.jsp");
String sessionID = request.getRequestedSessionId();
out.print(link);
%>
<A HREF="<%=link%>">Click here</A>
<HR>
<FORM METHOD=POST ACTION="<%=button%>">
<B>Example encoded button: </B><INPUT TYPE=SUBMIT VALUE="Submit">
</FORM>
<HR>
<B>Session ID</B>
<%=sessionID%>
</BODY>
</HTML>
and thn i go to internet explorer tools tab thn privacy tab and thn in cookies section i blocked all first party and third party cookies and when i run the above code it doesnot show me the encodedurl that i take in link variable and try to display it
plz tell me where i am wrong

