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!

Recent content by chmanio

  1. chmanio

    IDCAMS and Mainframe Express

    Hi! I just installed Mainframe Express 2.5 and I'm wondering if I can execute IDCAMS to delete generated datasets? Please help. Thanks! Chris
  2. chmanio

    ESDS / Non-VSAM Sequential File

    Thanks for replying Glenn!
  3. chmanio

    ESDS / Non-VSAM Sequential File

    Hi Everybody! Can anybody please answers these 2 questions? 1. What's the difference between VSAM-ESDS and Non-VSAM sequential file? 2. What will happen to the created AIX if the base cluster was deleted? your answer will be greatly appreciated! thanks! Chris
  4. chmanio

    JSP Problem

    i have 2 pages of JSP: page1.jsp which has a combo box. after a selection is made, it will display page2.jsp which has a table created based on the the value selected on the combo. my question: can i integrate the 2 jsp in one jsp file?
  5. chmanio

    JavaScript and JSP

    Hey guys! can i use <jsp:forward page=.../> inside a JavaScript? Chris
  6. chmanio

    JavaScript and JSP

    can i use <jsp:forward page=.../> inside a JavaScript?
  7. chmanio

    javascript -&gt; html -&gt; jsp

    hey guys! can i use <jsp:forward...> inside a JavaScript?
  8. chmanio

    Combo Box Problem!

    i see.. whew! thanks for the reply guys.[bigcheeks] [peace] chris
  9. chmanio

    Combo Box Problem!

    hey! your last suggestion solved the problem! [2thumbsup] whats the difference between value and text property? Thanks!
  10. chmanio

    Combo Box Problem!

    this: <html> <head> <title>Test</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="default.css" rel="stylesheet" type="text/css"> <p> <form name="frm_term"> <select name="c_term" class="flyoutSubHeading" onChange=alert(sprex())> <option>1st...
  11. chmanio

    Combo Box Problem!

    yeah, the values are: 1st Semester, SY 2003-2004 2nd Semester, SY 2003-2004 1st Semester, SY 2004-2005 2nd Semester, SY 2004-2005 im populating the combo using JSP <pulling data from oracle>
  12. chmanio

    Combo Box Problem!

    hey guys, ive re-written my code to: <SCRIPT language=JavaScript> function sprex() { var comboValue; var sel = document.forms['frm_term'].elements['c_term']; comboValue = sel.options[sel.selectedIndex].value; return(comboValue); } </SCRIPT> still returns "". the function works i guess coz...
  13. chmanio

    Combo Box Problem!

    im using IE 6.0
  14. chmanio

    Combo Box Problem!

    thanks for the quick reply. it alerts "". chris
  15. chmanio

    Combo Box Problem!

    My form code: <form name="frm_term"> <select name="c_term" class="flyoutSubHeading" <option>1st Semester, SY 2003-2004</option> <option>2nd Semester, SY 2003-2004</option> <option>1st Semester, SY 2004-2005</option> <option>2nd Semester, SY 2004-2005</option> </select>...

Part and Inventory Search

Back
Top