Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: AvaB
  • Content: Threads
  • Order by date
  1. AvaB

    <body onload="doSomething()"> doesn't work

    i have a main.jsp file whose <body onload="doSomething()"> works perfectly on its own. however, if i instead call AAA.jsp which includes/embeds 2 jsp files (main.jsp and menu.jsp), the onload of main.jsp no longer works. i suspect it is because AAA.jsp also has its own onload function and for...
  2. AvaB

    onClick=&quot;clearForm();return false;&quot;

    Just wondering, in code such as the one below, what exactly does the "return false" do? function clearForm(){ document.form1.firstname.value=""; document.form2.lastname.value=""; } <input type="image" src="clear.jpg" name="clear" onClick="clearForm();return false;">
  3. AvaB

    onclick=&quot;window.history.back()&quot;

    I have "order.jsp" with a bunch of textboxes where user inputs some data and "confirm.jsp" which extracts user input and displays it on screen for verification. here is my problem: on "confirm.jsp", i have a button called "change" that should go back to the order.jsp with the user's original...
  4. AvaB

    wrapping text & StringBuffer

    I have a StringBuffer object in B.jsp that collects various String objects passed from some A.jsp and displays it on the screen. B.jsp: String name_input = request.getParameter("name"); String address_input = request.getParameter("address"); String comment_input =...
  5. AvaB

    JSPs and Javascript

    Hi all, Does the location of the <script></script> block whwre I define functions matter in a JSP page?

Part and Inventory Search

Back
Top