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. tecknick

    ASP .NET Progressively slower over time

    Hey guys. Thanks for the advice. I will look into the tracing and also check out the SQL Server connections as well. tecknick
  2. tecknick

    ASP .NET Progressively slower over time

    Hi I have checked the memory usage of the ASP .NET worker process and it is normal. By this I mean that the worker process is only using a very small percentage of the memory and CPU. It is slightly higher when the application starts running slow but this is negligible. Any other...
  3. 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...
  4. 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') {...
  5. 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
  6. 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...
  7. 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