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: marianmarian
  • Order by date
  1. marianmarian

    tomcat setup, java, jsp

    hi all, i have installed apache tomcat 5.5. i have 5 different java classes. and i have a postgresql database. i am not sure how do i set all of these together to get a simple jsp form running. i know that i need a file.html whose form action calls file.jsp; and i know the file.jsp will call...
  2. marianmarian

    set time out help

    i was able to do this with javascript settimeout; very easy; here is what i did: i had a form: <form action="download.php" name="myForm"> <input type="hidden" value="envelope" name="aFormat"> <input type="hidden" value="" name="aDate"> </form> and this where the trick was: <td> <a...
  3. marianmarian

    set time out help

    I want to load it 5 seconds after the link (or button) is clicked? thanks
  4. marianmarian

    set time out help

    ok i changed my code around to use forms but i am still unable to get the values: <form action="download.php" name="myForm"> <input type="hidden" value="$dateCreatedNotFormated" name="date"> <input type="hidden" value="letter" name="format"> <input type="hidden" value="" name="someDate">...
  5. marianmarian

    set time out help

    yes with the exception that i want someDate's value to be the onclick="someDate.value='whatever i assigned it to'". ok so will var someDate's value be 'whatever i assigned it to'? thanks
  6. marianmarian

    set time out help

    here is what i am doing. in my html file i have these: <script> setTimeout('downloadEnv(someDate)',5000); function downloadEnv(created) { document.location="download.php?date=" + created; } </script> <html> <td> <a href="download.php"...
  7. marianmarian

    onload settimer

    thanks for all your responses, but i am getting error that "document doesn't support this property or method", i am using IE 6.0. <body onload=setTimeout("document.forms['form_values'].submit()",5000);>
  8. marianmarian

    onload settimer

    hi all, i am doing a transaction processsing; my code is in php, javascript, and of course html; once my customers click to place an order i sent them to a page called process.html telling them their transaction is being processed; this is just a an html page with lots of hidden form elements...
  9. marianmarian

    onsubmit event

    thanks, but something weired is happening: document.grantsForm.submit(); doesn't submit, but a new window opens with the window.open(blablabla), why, help. onClick="document.grantsForm.submit(); window.open();" thanks for all your responses
  10. marianmarian

    onsubmit event

    i did this already and it still doesn't work! <SCRIPT> function openWin() { document.grantsForm.submit(); Window.Open("add.php","Collaboration","width=600,height=400"); } </SCRIPT> <INPUT type="button" value="+" onClick="openWin();" class=button id=$gID> i cannot open a new window still...
  11. marianmarian

    onsubmit event

    <script> function openWin() { document.myForm.submit(); Window.Open("add.php','Collaboration','width=600,height=400"); } </script> <INPUT type="button" value="+" onClick="openWin();"> with this, i still can't open a new window
  12. marianmarian

    onsubmit event

    it is php; sorry. $ is how you begin to declare a variable in php . ok ignore the tags or the parsing of the variables, but i still can't open new window. thanks
  13. marianmarian

    onsubmit event

    thanks for the help, but somehow i am not getting the window to be opened: <script> function openWin() { document.myForm.submit(); Window.Open("add.php?id=$theID&screen=group&sid=$gID','Collaboration','width=600,height=400"); } </script> <INPUT type="button" value="+"...
  14. marianmarian

    onsubmit event

    hi, i am working on this form: in the form i have a button, when you click on the button, a new window is opened, but before a new window is opened, it submit the form fields. for a new window to be opened, i parse the new window link with an id. problem, id is blank as an id is auto...
  15. marianmarian

    request.url

    thanks to you all, i was able to do whatever i wanted to do. thanks
  16. marianmarian

    request.url

    thanks for all your responses, it works fine, but now here is my next question, how do i pass the id to my href link in my form? here is what i have done so far: <script jscript> var id=location.search var id2=id.split("&") myID=id2[1] </script> <form> <table> <a...
  17. marianmarian

    request.url

    i want this in client side. thanks
  18. marianmarian

    request.url

    each time i try to use request.querystring in javascript in my .aspx page, each time i run the query i get "Request is undefined" can someone tell me what i am doing wrong? <SCRIPT language=javascript> Request.QueryString("MTID"); </SCRIPT> thanks, marianmarian
  19. marianmarian

    request.querystring

    hi there, i am trying to use request.querystring in javascript in my .aspx page, but each time i run the query i get "Request is undefined" can someone tell me what i am doing wrong? <SCRIPT language=javascript> Request.QueryString("MTID"); </SCRIPT> thanks, marianmarian
  20. marianmarian

    request.url

    hi there, i am trying to request an id from a url like this: http://somewebsite.com/threadminder.cfm?spid=216&ID=216#PostForm can i do this in javascript, and if so how? and if it is possible can i pass that id in my existing html document url to be submitted to the next page. so basically...

Part and Inventory Search

Back
Top