javascript inserting between jsp

Reply

Join Date: Oct 2009
Posts: 2
Reputation: rattcod is an unknown quantity at this point 
Solved Threads: 0
rattcod rattcod is offline Offline
Newbie Poster

javascript inserting between jsp

 
0
  #1
Oct 22nd, 2009
hi
i have a problem in running javascript code between jsp page..
lets below is my jsp body .

  1. <body>
  2. <script language="javascript" >
  3. alert("hi");
  4. </script>
  5. <h1>hello</hello>
  6. <% System.out.println("hello"); %>
  7. </body>

in the above code there is no problem in running javascipt .. it gives hi alert easily but.. for below


<body>
   <script language="javascript" >
	alert("hi");
   </script>
   <h1>hello</hello>
   <% System.out.println("hello"); %>
   <jsp:forward page="page1.jsp" />
</body>

but if above i include any jsp forward page tag or sendRedirect function then this javascript does'nt run..
please help me
i m stuck with this problem..

thnx in advance
Last edited by peter_budo; Oct 22nd, 2009 at 1:02 pm. Reason: Keep It Organized - For easy readability, always wrap programming code within posts in [code] (code blocks)
Reply With Quote Quick reply to this message  
Join Date: Oct 2008
Posts: 2,721
Reputation: adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of adatapost has much to be proud of 
Solved Threads: 498
Moderator
adatapost's Avatar
adatapost adatapost is offline Offline
Posting Maven
 
0
  #2
Oct 24th, 2009
Do not use forward action. As we know the action forward sends the dynamic content of html of the page1.jsp to web-browser.

Use include action.
  1. <body>
  2. <script language="javascript" >
  3. alert("hi");
  4. </script>
  5. <h1>hello</hello>
  6. <% System.out.println("hello"); %>
  7. <jsp:include page="page1.jsp" />
  8. </body>
Last edited by adatapost; Oct 24th, 2009 at 12:55 am.
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 2
Reputation: rattcod is an unknown quantity at this point 
Solved Threads: 0
rattcod rattcod is offline Offline
Newbie Poster
 
0
  #3
Oct 25th, 2009
very much thnx
Reply With Quote Quick reply to this message  
Reply

Tags
javascript, jsp

Message:


Thread Tools Search this Thread



Tag cloud for javascript, jsp
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC