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

    How to link 2 dropdown in javascript?

    Hi, I have 2 dropdowns, the keys of the hashtable below are the options in dropdown1 and the the values are the superset. Dropdown2 shows the super set initially. By selecting a record(key) in dropdown1, Dropdown2 will show the subset base on the hashtable. I think I need to add a onChange...
  2. 11251995

    Default Enter key and submit button

    Hi tsuji, Fisrt thank you for your reply. My current problem is the Enter Keys do not work, not the real Update button, because when I hit Enter key in certain field, nothing hsppen. Or let me ask you in this way. I have a form which need a Update button to update this page, wiithin this form...
  3. 11251995

    Default Enter key and submit button

    Hi, I changed the code as following: <form action="Maint" method="POST" onSubmit="return ValidateData();" name="fMaint"> <input type="hidden" name="action" value="Update"> ... <input type="hidden" name="Button"> <input type="button" value="Update" onclick="setButton()"> ... </form> <SCRIPT...
  4. 11251995

    Default Enter key and submit button

    Hi, I have a form which has a hidden action named 'Update'. Within the form, I allow user to hit Enter key to do a search/add or validation for a couple of fields. There is also a submit button called 'Update'. Right now the behavior is whenever user hit the enter key, it did some work and then...
  5. 11251995

    ERROR 1049 at line 21: Unknown database '`abc`'

    I did a DB dump from host1, and when I try to reload the dump file on host2, I got the above error - Unknown databse '`abc`'. I checked the dump file, and found out that there are (`) sign enclosed my databse name and all the table name. I am wondering if these ` char causes the problem? How...
  6. 11251995

    How to retrieve a resulting html source?

    I save the result html from a website to my database is to avoid the staff to enter the user info(like user name, user ssn, user birthday etc.) again and again to that website and by clicking the submit and then get what I need (user current insurance information, confirmation number etc.).
  7. 11251995

    How to retrieve a resulting html source?

    The reason I am doing this is because we need constantly enter user info to another secure website and by clicking the submit button and get a result page. I’d like to save this result page (contain lots of info for this user) to my DB. So, I do not need enter them again and again to that...
  8. 11251995

    How to retrieve a resulting html source?

    My program can redirect users to a secure site. Then users will: 1)log in to this secure site; 2)submit a form; 3) get a results page. I need to implement a function to store this result page in a database automatically. I have no idea how to implement this. Any suggestions will be highly...
  9. 11251995

    convert html to tif in java??????

    Is there a good way to convert a html file to a tif file in java? Basically, every time when user click the submit button, I'd like to save the returned result page (a html window) to a tif file, and save it to my database. Thanks for all your help.
  10. 11251995

    How to automatically fill the data got from website1 to website2?

    Thank you so much adam0101! I did what you suggested as the following: <a href="" onClick="javascript: aWindow = window.open('https://www.ABC.com/request.jsp', 'aWindow', ''); aWindow.focus(); return false;">[Link to ABC]</a> <a href="" onClick="fillData()">[Capture data]</a> <form...
  11. 11251995

    How to automatically fill the data got from website1 to website2?

    Hi Adam0101, Thanks for your input. Here is my working around code: <script LANGUAGE="JavaScript"> var newWindow; function fillData(){ newWindow.document.form[1].subSSN.value=300895489; newWindow = window.open('https://www.ABC.com/x.jsp', 'aWindow', ''); newWindow .focus(); return false; }...
  12. 11251995

    How to automatically fill the data got from website1 to website2?

    To avoid user copy the info (i.e. name, dob, ssn etc) from website1 and fill to another website2's form manually all the time, I'd like to use some kind of javascript to grab the info in website1 and automatically fill the form in the website2. I am developing/own website1 while website2 is...

Part and Inventory Search

Back
Top