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 John Tel 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

    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>...
  2. 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...
  3. 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...
  4. 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!
  5. 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...
  6. 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...
  7. 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!!!
  8. firehorse24

    Can not run .aspx file after change to Windows XP

    Hi Guys, I've just changed my pc to Windows XP (Brand new pc). I Intalled IIS. The ASP files works fine. But Cannot run .aspx file. Even very sample file (welcome.aspx): <html> <body bgcolor="yellow"> <center> <h2>Hello W3Schools!</h2> <p><% Response.Write(now()) %></p> </center> </body>...
  9. firehorse24

    how to write httpd.ini for url in asp

    Hi Every one, I'm tring to use isapi_rewrite lite (free). I've already download it. What do i need to do now is to setup file httpd.ini. I don't know c/c++. does any one know how to write the syntext please? My code is like: <a href= "myasppage1?id=1234&status=1" > Thank you very much !
  10. firehorse24

    Save previous page value

    Hi, Is there any way to keep the value that user input in the previous page? I use asp. Thanks a lot!

Part and Inventory Search

Back
Top