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 Chriss Miller 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 zeero

  1. zeero

    mysql hangs

    yes
  2. zeero

    mysql hangs

    mysql seems to be hanging on my linux server. it takes a good 5+ minutes to bring up any jsp page that makes a localhost connection to the db. restarting, stopping, starting, nothing seems to fix this problem. it's running at it's normal amount of memory used. anybody have any idea what...
  3. zeero

    trace connection?

    Is there a way to trace a jsp that connects to a db on a remote server in linux? Thanks.
  4. zeero

    DB text display

    You replied as I was typing my correction, my first reply I had title=<%...%> what i meant was value=<%...>. It was uncalled for since what you showed me is what I needed. Thank you for your help, sorry for the confusion.
  5. zeero

    DB text display

    I mean <input type="button" title="my tool tip" value="<%= item %>"/>
  6. zeero

    DB text display

    because the text on the button is driven from the db as well as the description blurb on the other side of the page. (which I'm assuming would be something like:) String item = result1.getString("item"); ... <input type="button" title="<%= item %>" value="my button"/> but I dont want to use...
  7. zeero

    DB text display

    Hi all, I'm having problems trying to explain this, but I have a page with text driven from a DB. I'm using stylesheets to create a box around the text to make it look like a button. You have to click the "button" to bring the description up on the other side of the screen. I think the...
  8. zeero

    authenitication on internet

    do a search on solutionip
  9. zeero

    case sensitivey password

    Thanks chessbot, how do I implement that in the code?
  10. zeero

    case sensitivey password

    Hi all, I was wondering how I could make this js password prompt NOT case sensitive. <HTML> <HEAD> <SCRIPT language="JavaScript"> <!--hide var password=prompt('Enter password:',''); var mypass="fish"; if (password==mypass) { window.location="continue.html"; } else {...
  11. zeero

    Structs Tag Lib

    isn't structs C#?
  12. zeero

    JDBC ODBC not connecting

    with all that being said, sedj, at what point would you start using connection pooling?
  13. zeero

    LIMIT query

    Hi all, I have a query that returns all the room numbers in a hotel. What would be the proper syntax for a query to return one instance of each room. e.g. i want 1 2 3 4, etc. instead of 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3, etc.) Thanks
  14. zeero

    multifunction buttom?

    I mean button, sorry :/
  15. zeero

    multifunction buttom?

    Hi all, I was wondering if there was a way to have a button have 2 functions at once. Basically, I have a form a user fills out as well as a picture file for them to upload all on one page. What I want is at the bottom of the screen to click a submit button and have the value do a "submit" and...

Part and Inventory Search

Back
Top