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 wOOdy-Soft 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: blevy9
  • Content: Threads
  • Order by date
  1. blevy9

    Calling JSP script from JavaScript handler

    I am using sendRedirect JSP method to send pdf file to the browser, and then try to find a way to delete pdf file from the server. I understand, it does not work because of Client Browser is using the file after redirection. But I need to find out how to delete this file from the server after...
  2. blevy9

    Delete file

    I need to implement code in my JSP page to delete file from certain catalog if file exists; File name is a String variable. How to do it?
  3. blevy9

    sendRedirect question

    I am using sendRedirect method to send to client the file, created on the Server side: response.sendRedirect(ls_filename); where ls_filename - it is report, which is created with different arguments, it saved as file in server directory. When file name is changed, it works fine, client...
  4. blevy9

    How to map the host name to the listener (ip?) in the hosts file

    I implemented PDF and Excel file generation in my PowerBuilder code using generate() function and using redirection in JSP Client to send generated file to the Browser: String ls_filename = htmldw.generatePDF(); if (ls_filename.length() > 0 ) {...
  5. blevy9

    Prforming Form Validation

    I wrote function verify, that performing form verifivation. Function loop through the all text elements of the form: function verify(f) { for(var i=0; i < f.length; i++) { var e = f.elements[i]; if e.value == null) { alert(&quot;All Arguments are required for the...
  6. blevy9

    Create message when user click Submit button

    My first JSP Page includes a Form with Submit button. When user clicks the button, data items on the form send to the second Web Page, specified in the FORM ACTION attribute. This Web Page retrieve data from Database to print Report and pop-up with big delay. I need to create message on the...

Part and Inventory Search

Back
Top