I am now using
Struts for the controller.
In my
jsp file, there is
<html:form action="/login.do">
in the code.
However, when I load this page is browser, and I view the source, I found that the above code becomes
<form name="loginForm" method="POST" action="/cimweb/login.do;jsessionid=664592D1E0F0141501E1B02245C54298">
However, when I reload this page, the source becomes
<form name="loginForm" method="POST" action="/cimweb/login.do">
Why does the jsessionid appear in the first case while it disappears after reloading? Thanks!
Stephen