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: mdazam
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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 !!
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. mdazam

    Calling PERL script from JSP

    hi how do I call Perl SCript from JSP I tried this but didnt worked... String a = "/opt/bin/symlink\r"; String b= "crypto/readme.txt"; String c= "\rEND\r"; String[] cmd = new String[] {a,b,c}; if(cmd != null){ Process p = Runtime.getRuntime().exec(a); .... When I...

Part and Inventory Search

Back
Top