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 Wanet Telecoms Ltd 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: rshandy
  • Content: Threads
  • Order by date
  1. rshandy

    reading and writing files through a browser

    I have a script that executes from an html form submission. Its all run on an internal iis server. The script resides in the cgi-bin on the iis server that reads/and writes to an external js file. It works fine and then all of the sudden I get a software error: Error opening file during...
  2. rshandy

    Writing to a txt file

    We're using IIS 5.0 server to run Perl applications for our internal company functions. The applications reside in the default scripts folder. This problem may straddle both Perl and IIS forums, but here goes: When the Perl program is accessed from a browser: It can write to a file on another...
  3. rshandy

    create hashes from a hash

    Still a newb so bear with me: I'm trying bring in data from a flatfile db and place into a hash and then create a subset of that common data. For example, I have product groupings that have multiple multiple colors in multiple sizes. I want to be able to group all skus that are size M,L, etc...
  4. rshandy

    extra carriage returns within a CSV file

    Hi, I'm trying to read in a text file that's comma separated. Unfortunately, some of the data has carriage returns within the field before I get to newline and Perl thinks it an end of record. How can I differentiate between carriage returns within the record and an "end of line" after each...
  5. rshandy

    keeping hidden/visib Div visible after hitting back button

    I have a div on a form which visibility is controlled by two radio buttons. When the user picks the radio button "my shipping address is different from my billing address", the div becomes visible and contains additional fields for their shipping info. they then submit the form ...no problem...
  6. rshandy

    Running Javascript from a local computer

    I use dreamweaver to build my html pages which has a fair amount of JS in the page. When I want to view the page I hit "f12" and IE parses the page, but doesn't run any of the JS scripts. Is there an easier way to have JS execute without having the page uploaded to our hosted server and viewed...
  7. rshandy

    problems with hover working in Netscape and FF

    I've tried several approaches to get the hover to work in Netscape and FF with no luck - any approach, however,works fine in IE. Here's the css part: .backUp { color: #999966; font-size: 10px; font-family: arial; } .backUp a:link { color: #999966; text-decoration: none; } .backUp...
  8. rshandy

    external .js files

    I'm moving many of my js functions to a common external .js file for convenience and code consolidation. Will this help reduce page load times?
  9. rshandy

    Changing text field bgcolor on Validate

    I want to be able to change the background color of the text field within a form validate - I can't seem to get it to work I tried a few different ways with not much sucess... Here's the code: function validateForm(f) { if (f.sirname.value.length < 1) {...
  10. rshandy

    changing graphic name in one dir and writing to different dir.

    Hi: I'm reading a text file which has 2 fields, the existing graphic name, and the corresponding new name. I want to use this file to compare each graphic in a directory and write the newly named graphic to a different directory. I've gotten up to reading and comparing the text file, but I...
  11. rshandy

    writing same values that are displayed on browser

    Can I possibly write the same values that are being displayed in the browser to a text file? The values end up different when I write to the file because the actual page has to be parsed for a data tag to be interpreted. For example, if I call a simple test script...
  12. rshandy

    client side Perl processing

    Read some spirited posts from Phalanx1 and Siberian, so I know the expertise is out there... I'm trying to have a perl script process an html page from an html page without opening another browser window or redirecting or refreshing the page. The Perl script has to interpret my SoftCart tags...
  13. rshandy

    fetching data from mysql

    Thanks to all the great posts, I currently have an html page that changes about 20 or so fields on an html page depending on what graphic the user clicks on. The data is was initially created in an array in a js in the header of the document. I then created an external js script to house that...
  14. rshandy

    Total mysql Newbie Question

    I've been using Softcart and have run into a road block in changing values/fields (descriptions, pricing, color, etc) displayed on my product page using onclick commands. Can anyone tell me where/how I can get info on being able to fetch that data from a mysql database from static html pages -...
  15. rshandy

    creating an external .js file

    I'm trying to create an external .js file and it just doesn't seem to work. I found an old example while searching the forum and tried to use it, but I can't seem to get it to call the file. Here's the example: myFile.js: /* begin of js file */ // NOTE there are NOT <script> tags included...
  16. rshandy

    getting calculated value from another function

    Can anyone tell me how retrieve a calculated value of a variable from another function: Sorry for the silly example but: <head> <SCRIPT LANGUAGE="JavaScript"> var estimate = 0; function total1 (){ estimate = 55; } function revisedtotal2 () { estimate = estimate + 25; } </script> </head>...
  17. rshandy

    call a function from within a function

    Can I call a function while executing another function(nested functions)?
  18. rshandy

    Marrying multiple checkboxes

    Hi: Rookie in need of help. I'm trying to call the same function from an onclick of multiple checkboxes so it can add the value to the total when checked (and a descriptive line) and remove it from the total when unchecked. the start of the function looks like this: function...
  19. rshandy

    print file with a script

    After I've manipulated the data, I am writing the results to text file. Right now I've been manually printing the file. How can I automatically print the file (using the default printer that the script was accessed from) from within my script. If it matters, the server is running windows 2000...
  20. rshandy

    Running the server's IE from an network computer

    Is there a way to run the server's Internet explorer or Netscape browser from another computer on the network. We have this encryption program that the "active" key can only work on one computerat a time, but it would be much more usuable if several users could access the program from their own...

Part and Inventory Search

Back
Top