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...
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...
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')
{...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.