是做虚拟主机的吧 hoho 
既然流量没有上去,应该可以排除ddos的可能
windows日志看看有没有系统或者应用程序错误
内存泄露...我觉得不太可能,这个都是针对全局的 你说其他的没问题

解决方案 »

  1.   

    刚刚又出现了,我用zjcxc写的p_lockinfo查了一下,发现进程里有很多查询会员信息的语句,不知道和这个有关吗?类似
     select name from mytable where id='10001'
     select name from mytable where id='10002'
     select name from mytable where id='10003'
     select name from mytable where id='10004'
     select name from mytable where id='10005'发现有很多 我开始怀疑是程序没有关闭了。。
    Public Shared Function GetMemberName(ByVal inMemberID As String) As String
            Dim SQL As String = "select name from MT_mytable where id='" & ShareFunction.SafeRequest(inMemberID, 0) & "'"
            Try
                Return SqlHelper.ExecuteScalar(GetDBConnectionString(), CommandType.Text, SQL)
            Catch ex As Exception
                Return ""
            Finally
            End Try
        End Function顺便麻烦看看这个函数,引用了sqlhelper这个类这样写有问题吗??熟悉.net的朋友麻烦说说