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

  • Users: dove85
  • Order by date
  1. dove85

    anybody know how to link jsp with oracle??

    You can make a DB connection thru JDBC. Class.forName("oracle.jdbc.driver.OracleDriver"); connection=DriverManager.getConnection(myUrl,myUserid,myPassword); i.e. if your DB name is "abc", your port number is 1521, and your host name is "xyz" then...
  2. dove85

    Passing variables

    rycamor, It would be appreciated if you could give some examples for the "ol' hidden frame trick". Dove
  3. dove85

    How to right-justify input objects in a form?

    Wushutwist, I want to right-justify the content of the 8 input boxes. It has been resolved. The answer is: <TD><INPUT TYPE=&quot;text&quot; STYLE=&quot;text-align:right&quot; NAME=&quot;qty&quot; SIZE=&quot;20&quot;></TD> Thanks. Dove85
  4. dove85

    How to right-justify input objects in a form?

    tsdragon -- That's what I have been looking for. Thank you. Thank you all for your help, guys. Dove85
  5. dove85

    How to right-justify input objects in a form?

    aperfectcircle, THAT is what I have been looking for! Thank you very much. theEclipse, thank you for your effort. I do appreciate your help. Dove85
  6. dove85

    How to right-justify input objects in a form?

    Greg, You can see that in my code, I have already tried that. Unfortunately, that only works for the &quot;labels&quot;, not for the INPUT cells. Dove85
  7. dove85

    How to right-justify input objects in a form?

    Does any one know how to line up (right justify) these input objects? Your help would be appreciated. Dove85 ----------------------------------------- <HTML> <BODY> <FORM NAME=&quot;OrderedItemsForm&quot; METHOD=&quot;post&quot; ACTION=&quot;SUBMITxyz.jsp&quot;> <TABLE> <TR> <TD...
  8. dove85

    How to right-justify input objects in a form?

    Does any one know how to line up (right justify) these input objects? Your help would be appreciated. Dove85 ----------------------------------------- <HTML> <BODY> <FORM NAME=&quot;OrderedItemsForm&quot; METHOD=&quot;post&quot; ACTION=&quot;SUBMITxyz.jsp&quot;> <TABLE> <TR> <TD...
  9. dove85

    How to right-justify input objects in a form?

    theEclipse, I have already figured out 2) & 3) but would like very much to know how to do 1). Thanks. Dove85
  10. dove85

    How to right-justify input objects in a form?

    Your help would be appreciated. 1) How to line up (right justify) these numbers? 2) If &quot;13.5&quot; is the value, I want to display &quot;13.50&quot;. I wrote some JavaScript functions to parse the input objects as strings and then pad with zeors. Is there a better way to handle it? 3)...
  11. dove85

    Variable substitutions in JavaScript

    function amt_check(form,field_name,amount) { . . some code to calculate newamt . . if (field_name == &quot;cost&quot;) { form.cost.innerText = newamt; } else if (field_name == &quot;unit_price&quot;) { form.unit_price.innerText = newamt; } else if (field_name ==...
  12. dove85

    Display x rows of data with BACK/FORWARD buttons to navigate

    Wushutwist, I am a bit confused now. I was trying to find a way to associate the ResultSet (which is &quot;vendor&quot; of type String[][]) with the session. I just picked the name &quot;vendorList&quot; randomly. So, if I have a ResultSet named &quot;vendor&quot; of type String[][], how do...
  13. dove85

    Display x rows of data with BACK/FORWARD buttons to navigate

    Thanks, wushutwist and Leon. How do I store the ResultSet into session? I tried <% session.setAttribute(vendorList, vendor); %> where &quot;vendor&quot; is the ResultSet with type String[][], but session.setAttribute only takes type String. Dove85
  14. dove85

    Display x rows of data with BACK/FORWARD buttons to navigate

    Wushutwist, Thanks. Your explanation is very clear. I am interested in learning this &quot;some type of persistent storage (Session, EJB) to retain the query results between requests&quot;. Could you elabrate? Thank you again. Dove85
  15. dove85

    Display x rows of data with BACK/FORWARD buttons to navigate

    Your help would be appreciated. ------------------------------------------------------------ QUESTION 1: I need to display a list of vendor info in a tabular format (the data is from an Oracle database). The list is rather long. Right now I have it displayed on 1 page with scroll bars on the...
  16. dove85

    Access variable thru pop-up from JSP statement (case 2)

    A form object &quot;vendor_id&quot; is passed to a pop-up window thru a JavaScript function. I retrieved the value of the passed object in the pop-up window fine, but failed to put the var into a JSP statement. Your input would be appreciated...
  17. dove85

    How to access variable thru pop-up from JSP statement

    Wushutwist, It works! Thank you VERY much. Dove85
  18. dove85

    How to access variable thru pop-up from JSP statement

    A form object &quot;vendor_id&quot; is passed to a pop-up window thru a JavaScript function. I retrieved the value of the passed object in the pop-up window fine, but failed to put the var into a JSP statement. Your input would be appreciated...
  19. dove85

    Access variable thru pop-up from JSP statement

    A form object &quot;vendor_id&quot; is passed to a pop-up window thru a JavaScript function. I retrieved the value of the passed object in the pop-up window fine, but failed to put the var into a JSP statement. Your input would be appreciated...

Part and Inventory Search

Back
Top