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

  • Users: rshandy
  • Order by date
  1. rshandy

    reading and writing files through a browser

    I checked the file. The final } is being written to the file. Also, during the next part of the process, I submit that page to another script which writes to a txt cfg file - it sometime produces the same type of error. cannot open database...
  2. rshandy

    reading and writing files through a browser

    Thanks for the response guys Travis:The file is located on a separate machine a windows2000 server running IIS 5.0. The network is a win2000 server with approximately 10 XP members of the domain. I did originally have the scripts running from the "scripts" directory, but found I could better...
  3. 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...
  4. rshandy

    Writing to a txt file

    Thanks Sheco. Do I access through the IIS Manager? I see it lists the default and adminstrative websites, but I don't see where I can change the default account...
  5. rshandy

    Writing to a txt file

    Is there a way to configure it differently so the user can have more read/write permissions. What kind of permissions would I have in a cgi-bin folder instead? The windows2000 member of the domain must be able to run the Perl script from their browser - that script must be able to create/edit...
  6. 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...
  7. rshandy

    create hashes from a hash

    Sorry, Kevin. This is only a subroutine called from a larger perl program I'm writing. Also, the flatfile is over 30 fields, so I cut and pasted only the fields I was extracting to perform the size matching and cut and pasted improperly. The resultant was accidentally posted with the data...
  8. 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...
  9. rshandy

    extra carriage returns within a CSV file

    Scratch that. The server that runs our perl scripts is running windows2000. The database is made using brower submissions on WinXP machines.
  10. rshandy

    extra carriage returns within a CSV file

    windows XP for both
  11. 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...
  12. rshandy

    keeping hidden/visib Div visible after hitting back button

    I just figured it out. I forgot the back button reads the "onload" function in the body tag. I created condition statement to check to see if the first field in ship part of the form has data and if so set div to visible and it seems to work fine.
  13. 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...
  14. 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...
  15. rshandy

    problems with hover working in Netscape and FF

    Thanks Chris. I created a new style sheet that only included .backUp, actually renamed to bcktop (all lowercase - I read one of your previous posts)... And now it works in all browsers!?? Not sure where the conflict is. To test it, I changed the class name again; to backTop ("T" capitalized)...
  16. rshandy

    problems with hover working in Netscape and FF

    You maybe right. I'll check it and let you know Thanks, Rich
  17. rshandy

    problems with hover working in Netscape and FF

    Hi Jeff: Thanks for the post. No effect in NS or FF. I assumed you wanted me to delete the lines: .backUp a:link { color: #999966; text-decoration: none; } .backUp a:active { color: #999966; text-decoration: none; } .backUp a:visited { color: #999966...
  18. rshandy

    problems with hover working in Netscape and FF

    sorry for the typos: should read: On the html page I tried: a) <td bgcolor="#FFFFFF" colspan="4"><font class="backUp"><A href="#top">Back to Top</A></font> </td> b) <span class="backUp"><A href="#top">Back to top</A></span>
  19. 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...
  20. rshandy

    external .js files

    Thanks Rick! Do I have to still call the js script in every page or can I just call the function since its in cache? For example, I have a script that I load on every applicable page: i.e. <script language="JavaScript1.2" src="http://www.myurl.com/images/cartFunction.js"></script> When I...

Part and Inventory Search

Back
Top