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 SkipVought 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: *

  1. mdazam

    Form Issue

    Sorry that was typo: HTML and Servlet has now "FileDesc". I can able to solve only half. ie When I replaced "file description" <textarea> above the File Upload it worked. But other unsolved is that I have multiple files. I dont knwo how to comeup with a script which add "file description"...
  2. mdazam

    Form Issue

    Hi experts, I had a servlet which upload(write) files to server. Now I was told to have describtion of each file along with the file itself. I try my all possible ways but didnt got thru. Can anyone help me out. 1st is it possible to submit <textarea> along with the type="file" with form...
  3. mdazam

    Pool Connection - Close Issue

    I know about Pool Connection. But I mean to say since I'm not the owner of that above Pool class I'm having diff. to address my issue. In my JSP page I'm importing that class and using it as below. Actualy I'm not closing connection in JSP as u can see I'm returning the connection back to Pool...
  4. mdazam

    Pool Connection - Close Issue

    Hello, I copied this class from this site somewhere and its working great. But I'm having issue of 'connection reset' and 'Broken Pipe' error messages. Since I'm not the owner of this class I dont know where to make modification in order to close the connection or delete or make it expired...
  5. mdazam

    Need Upload Servlet Modification...

    Hello, This is SEDJ's soultion, but it upload only one file. I need to know what modification to be done on this servlet in order to hv it upload multiple files. http://www.tek-tips.com/viewthread.cfm?qid=596262 I Wish Sedj see this as he is guru to solve such problems.. Thanks for your time !!
  6. mdazam

    Want to add file upload functionality to application

    Okay it uploaded. Can you tell me if there are Multiple Files to uploads what changes I need to make here please........... HOW TO UPLOAD MULTIPLE FILES ?????? WITH THIS CODE....
  7. mdazam

    Want to add file upload functionality to application

    You this code worked perfect without error. But I dont know if the file really upload or just showed me the success page. You can tell me where in look in Linux directory to see if really file uploaded. Also can I send the directory rootpath as argument here: public void...
  8. mdazam

    Help on Servlet using Stored Porceduresss

    Please guide me here... Can I call 3 stored procedure one after other ? Idea here is once this servlet retrive form data, it calls stored procedure1 using half the data of form to run it, then calls stroed procedure2 and uses other half of data of form to execute. And finaly on 3rd stored...
  9. mdazam

    Select OnChange Help

    Need help !! <select name="categoria" onchange="JavaScript()"> <option selected value="">-- choose Product-- !! Using Stored Procedures I'm able to display here !! </select> Now what I want is when any Product is selected a price correspond product should be displayed. This price is...
  10. mdazam

    File Upload Using Stored Procedure

    Hello Everyone, I need advice or rather help to get gonig on this issue. I have a form which accepts name and email and files upload. When I made enctype=multipart/form-data I was unable to get name and email values in SERVLET. So what I did is on Page 1, asking User to enter Name and email...
  11. mdazam

    File Upload HTML JS JSP

    Hello everyone, I hv put lot of effort doing in JS but seems like it will be more fexiable to do it in JSP. After see this example in php. http://examples.codecharge.com/CCSExamplePack2/FileUpload/FileUpload.php Click on "Attach relevant documents" in the above link you'll get idea what I...
  12. mdazam

    File Upload - Help

    Hello everyone, I hv put lot of effort doing in JS but seems like it will be more fexiable to do it in JSP. After see this example in php. http://examples.codecharge.com/CCSExamplePack2/FileUpload/FileUpload.php Click on "Attach relevant documents" in the above link you'll get idea what I...
  13. mdazam

    File Upload Buttons

    I think I know the problem but need solutions. When I use form method as POST, everything I submit is null its bcoz I'm doing request.getParameter() When I use form method as GET, everything I submit is show proper value in Mozilla but not in IE (submit error) may be bcoz of...
  14. mdazam

    File Upload Buttons

    Okay after converting <button>.... into <input type=....> I dont get any error on validator. But still when I submit my form values are null.
  15. mdazam

    File Upload Buttons

    oops guess U hv not read my last comment completely... Error: when I submit in IE value of upload fileds showing null where as in Mozilla upload fields showing proper value after submit.
  16. mdazam

    File Upload Buttons

    ok I moved</form> to ... <tr id="myFavoriteCell"></form></td> Now the add more file button and submit working on both browser but when I submit in IE value of upload fileds showing null where as in Mozilla it is giving proper value.
  17. mdazam

    File Upload Buttons

    JS ... <form ...> <table><tr> <td>Upload file/s::</td> <td id="myFavoriteCell"></td> </tr></table> <button onClick="document.forms[0].submit()"> Submit Form </button> <button onClick="WriteNew()">Add More Files</button> </form> My code is as above. I think we are almost there. Few errors When I...
  18. mdazam

    File Upload Buttons

    I'm not the owner of that javascript so dont know how to do it. Can you please post me that code... <table><tr> <td>Upload File/s</td> <td>????I want it here to get appended here????</td> </tr> </table>
  19. mdazam

    File Upload Buttons

    I have below script which when click on Add More button it keep on adding the "Upload" file type... My problem is I cannot make this arrange or decorate in table cell. When I try to put in table cell the input field shows up below the submit button in Mozilla and some postion in IE I want to hv...
  20. mdazam

    Calling PERL script from JSP

    But my output didnt came using your code: Process p = Runtime.getRuntime().exec("/opt/bin/symlink crypto/readme.txt END"); It was good for this code: Process p = Runtime.getRuntime().exec("/opt/bin/symlink"); PrintWriter pw = new PrintWriter(p.getOutputStream())...

Part and Inventory Search

Back
Top