aspose file tools
The moose likes JSP and the fly likes include js in jsp Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "include js in jsp" Watch "include js in jsp" New topic
Author

include js in jsp

Dora Di Donato
Ranch Hand

Joined: Nov 27, 2009
Posts: 30
Hy guys,
some questions about a js that i must include in my jsp :
I read with this javascript the cooki write by java cookie this is the code java in the jsp:

<%

Date now = new Date(System.currentTimeMillis());

DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss.SSS");


String date = formatter.format(now);

Cookie cookie_registrazione = new Cookie("RegStep1_cookie", date);

response.addCookie(cookie_registrazione);


%>
now i must include a file js to read this cookie ok??


var nome = "RegStep1_cookie";

if (document.cookie.length > 0) {
alert("in document");
c_start = document.cookie.indexOf(nome + "=");
if (c_start != -1) {
c_start = c_start + nome.length + 1;
c_end = document.cookie.indexOf(";", c_start);
if (c_end == -1) c_end = document.cookie.length;

ret_cookie = unescape(document.cookie.substring(c_start, c_end));


return ret_cookie;

}
}

Ok how i can to view this cooki in the frame but the include file must to be an js?
Someonte can help me?

thank you
dora di donato

 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: include js in jsp
 
Similar Threads
set cooki servlet and take form javascript
About URLyBird 1.2.3 Assignment Question
Is there some easier way to set and retrieve cookies?
orgApacheMyFacesPopup is undefined
creating secure Java apps