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

  1. firehorse24

    onmouseover, the popup box always shown on the top of the page

    Thank you Chris, I'll try that!
  2. firehorse24

    onmouseover, the popup box always shown on the top of the page

    Thank you for the reply, Chris. Can you please post some sample code for me? I've tried to change to position: relative inside style #messageBox. It didn't work. I don't understand why onmouseover wasn't working for table. Thanks again.
  3. firehorse24

    onmouseover, the popup box always shown on the top of the page

    Hi, I'm tring to do onmouseover to each row in a <table>. I'd like the popup box shown next to each row when I move the mouse over. But the popup box always shown on the same position in the page. If I don't use <table>, then the popup box follow the rows. please see my code with <table>...
  4. firehorse24

    array size

    Thank you very much DNG, I have another question. I want to save a local array to session. if local array size increased, does the size of the session array automatically increased too? do I just move the local array to session like: session("ary1") = localarray1 howcome when I retrieve...
  5. firehorse24

    array size

    HI, The array size confused me. I hope someone can help me. I define an array in asp: dim ary1() redim preserve ary1(2) ary1(0) = "A" ary1(1) = "B" ary1(2) = "C" response.write (ary1(0) & "<br>" & ary1(1) & "<br>" & ary1(2) & "<br>" ) response.write ubound(ary1) I thought array should...
  6. firehorse24

    get value from new window

    Thank you so much. I figured it out.
  7. firehorse24

    get value from new window

    hi, I don't know where i should put it. What I'm tring to do is when I click a button in the main page, a new window pops up, which having two input fields (not one field. I know I can use prompt to get one value). then I click the button in the new window. the new window closed and the input...
  8. firehorse24

    get value from new window

    Hi Dan, I code ><input type='button' value='Submit Job' onclick= 'sbmnw(); return false;'> in the popup window. why it doesn't do anything when I click the button? where should I put the function sbmnw()? thanks you!
  9. firehorse24

    get value from new window

    Hi Dan, Thank for your reply. Sorry I'm not good at Javascript. I tried to put the following code everywhere inside the function makenewwindow. It won't work right. When I click the button in parent's page, it popup right away instead of showing the new window...
  10. firehorse24

    get value from new window

    Hi everyone, Hope someone can help with it. I had a web page in asp. it has a button has event handler. if I click the button, it run a js to open a new window, with 2 input (text) fields and a submit button in there. My question is how do I validate those 2 input fields in popup window and...
  11. firehorse24

    Re: open mutiple link in same window

    Hi Dan I've tried you way before. The problem is when I click the 1st link, I got the new window popup has no problem. But when I click the other links, the window was minimized. it looks like the window was closed. It's going to confuse the user. How can I keep the window maxmized so the...
  12. firehorse24

    Re: open mutiple link in same window

    Hi Dan, I'm sorry, I didn't explain clearly. What I want to do is: the 1st link user click open a new window instead of staying in parent window. other links open in that new window instead of keeping opening another window. Can I do that? Thanks!
  13. firehorse24

    Re: open mutiple link in same window

    Hi Everyone, I have a page that contain mutiple links. What I try to do is: when I click those links I want those links to be opened in the same window. Can anyone help me with it please? Thanks ahead!
  14. firehorse24

    Open the mutiple links at same window

    Thanks. I'll try javascript.
  15. firehorse24

    Open the mutiple links at same window

    Hi Everyone, I have a page that contain mutiple links. What I try to do is: when I open those links I want those links to be opened in the same window. I coded target="_wdw123" for each link. The first URL was opened in the window wdw123 has no problem. But when I click the 2nd link, the...
  16. firehorse24

    cannot update data has apotrophe with ODBC

    Hi Guys, Sorry, I searched the history of the forums, Got the answer. Just replace "'" with "''". It works good. Thank you all !!!
  17. firehorse24

    cannot update data has apotrophe with ODBC

    Hi Guys, Hope someone can help me with this issue. I have an asp script updating dbf with ODBC. The dbf is in AS400. Since in the data contain an apostrophe, Like "INT'L". The objconn.excute(sql) failed with the error message: Microsoft OLE DB Provider for ODBC Drivers...
  18. firehorse24

    Convert HTML to PDF in ASP, or Creat PDF in asp

    Thanks gbaughma. I'll think about it.
  19. firehorse24

    Convert HTML to PDF in ASP, or Creat PDF in asp

    Thanks MrPlough69. I'll try them.
  20. firehorse24

    Convert HTML to PDF in ASP, or Creat PDF in asp

    Hi Guys, I'm looking for a way to display a dynamic genrated document in pdf from asp. Before we created the html in asp. Now we want to do is display pdf file and display it to client instead of displaying html. Does anyone have any suggestion please? Thanks A lot!!!

Part and Inventory Search

Back
Top