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 strongm 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. apparition

    mod_rewrite and DirectoryIndex

    OK I think I finally got it. I just thought I'd come back and let any future readers know how this should be done since I could find nothing about it. Its not exactly what I wanted but it works. I'm just going to add seperate RewriteConds for each directory that has an index.asp or default.asp...
  2. apparition

    mod_rewrite and DirectoryIndex

    Thanks for the suggestion... Yes, I did try it with SCRIPT_FILENAME and got the same result. It didn't see the &quot;asp&quot; in SCRIPT_FILENAME. I tried to test the different variables in a SSI (shtml) file with the <!--#echo var=&quot;VARIABLE&quot; -->. It shows the actual file name in...
  3. apparition

    mod_rewrite and DirectoryIndex

    I have Apache 2.0 installed on a WinNT4 box coexisting with IIS which I moved to port 81. Apache handles everything except for the ASPs. I used mod_rewrite to change and urls that contain &quot;asp&quot; to port 81 like this: RewriteEngine on RewriteBase / RewriteCond %{REQUEST_URI}...
  4. apparition

    mod_rewrite noob

    Well, I haven't fixed my problem yet but I did find a cool tutorial on mod_rewrite for any future mod_rewrite noobs reading this. Its not as through but a whole lot easier to understand than Apache's documentation and examples. http://www.promotiondata.com/sections.php?op=viewarticle&artid=1
  5. apparition

    mod_rewrite noob

    Background: My ultimate goal is to have IIS serve ASPs and Apache serve everything else on a NT4 box. IIS listens on port 81 and Apache is on port 80 of the same IP. I'm trying to use mod_rewrite in Apache to change to url to port 81 if it has &quot;.asp&quot; in it. I don't think I'm...
  6. apparition

    Running Oracle 7 stored procedures from Access

    I am going to revive this old thread because I am having the same problem. I am trying to run an Oracle procedure from Access 2000 and keep getting the 'ODBC Call Failed' message.
  7. apparition

    magically set or change an onClick attribute

    Thanks UNIMENT, That is definately better than nothing. I can use your suggestion for IE and use my old way for all other browsers. The script already detects the browser version anyways. Another question for ya. Did you look that up in the jscript documentation on microsoft's site? I'm lookin...
  8. apparition

    magically set or change an onClick attribute

    ~bump~ No luck yet...
  9. apparition

    magically set or change an onClick attribute

    Right now, I have a script that loops through the links array and searches the href attribute of each link for a specific value. If it finds it, the href attribute for that link is changed to a javascript function call. I would much rather use the onClick event handler to call the function but I...
  10. apparition

    Change an Event from within another Event?

    ~bump~ Any other ideas?
  11. apparition

    Change an Event from within another Event?

    Thanks for the suggestion. Actually I agree with you that a button would be best but unfortunately our client is kinda stuck on the 'no button' thing. I really do appreciate your input though.
  12. apparition

    Change an Event from within another Event?

    OK say I have a select box with a bunch of options in it. I have a javascript function that runs when the select is changed (onChange) and goes to another page. Its all fine and good until you try to navigate the option box without a mouse. Now everytime you tab to the select box and try to...
  13. apparition

    what number in the link array?

    ~bump~ I'm runnin out of ideas... Any suggestions at all?
  14. apparition

    Mixing JavaScript and JSPs

    I'm not sure if this is what you're talking about but check it out. I hope it helps... http://javascript.internet.com/foldertree/
  15. apparition

    what number in the link array?

    I need to be able to click on a link and the script tell me (alert or something) what number that link is in the link array on the page without actually typing the onClick attribute in the HTML tag. Actually the ultimate goal is every time someone clicks on a link, I want to search the href...
  16. apparition

    acessing a db modified date

    OK, I figured it out. <% Dim objFSO Dim fFile Set objFSO = CreateObject(&quot;Scripting.FileSystemObject&quot;) Set fFile = objFSO.GetFile(&quot;D:\somedir\somefile.ext&quot;) Response.Write FormatDateTime(fFile.DateLastModified, 2) %>
  17. apparition

    3Com Nic Drivers

    Is the nic integrated into the motherboard? I saw a few seperate drivers for integrated 3com nics on other sites. I would imagine that the drivers off of 3com's site would still work though.
  18. apparition

    acessing a db modified date

    I have a couple of asp pages that pull certain records from an access database. I need to put a dynamic &quot;updated&quot; date on the page so that people know when the information was last updated. Is there a way to access the modified date for the database? Or maybe some way in Access to...
  19. apparition

    Boot record signature not found!

    OK, this is my first shot at NT. I am tryin to install NT server and I thought I had it beat. I installed everything, removed the floppy and CD disks and booted up from the hard drive. For some reason, LILO was still in use (I thought that windows over wrote LILO?) anyways, I booted into dos and...
  20. apparition

    Acrobat Detection Script

    I wrote a script to detect what version of the acrobat reader a browser has. I want to use javascript but it does not work for Internet Explorer. The only way I've found to do it is with vbscript. Does anyone know how to detect what version of acrobat reader is installed in IE with...

Part and Inventory Search

Back
Top