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 TouchToneTommy 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: tecknick
  • Content: Threads
  • Order by date
  1. tecknick

    ASP .NET Progressively slower over time

    Hi I have this weird situation which I cannot seem to find a solution for. I have a web server running windows server 2000 w IIS 5.0 and it has an ASP .NET application that runs from it. It is the only thing that runs on this machine. When I update my application, the JIT compile happens and...
  2. tecknick

    reg exp matching problem

    I am trying to test some user input in a program. example..... $input = '700.00,,' if ($input !~ /\d+\.\d+/) { print "invalid"; } I am only want input of the form 700.00 not 700.00,, I could write ..... if( $input != '700.00') {...
  3. tecknick

    removal of $ from input

    Hey I am trying to remove the $ sign from some user input. I am using tr/\$// This does not seem to work. Any suggestions. Thanks
  4. tecknick

    Removal of special characters

    Hi I have a perl cgi form which allows users to ask for information to be emailed to them. The request is appended to a comma delimeted file for use on a database. I am having a problem with users writing their request in Microsoft Word for Windows and cut and pasting it into my form. I get...
  5. tecknick

    Perl CGI exec command

    Hey I am having trouble getting the exec() command used within a perl script to be executed via a web browser. if statement is true { exec("search.cgi"); } else { &Login; } The above is a snippet. When run in Unix, if the statement is true, the search script...

Part and Inventory Search

Back
Top