| Thread | Last Post | Replies |
|
| Stability of Active Directory | 22 Sep 2003 07:39 GMT | 1 |
Currently I am building an application to access the data from the Active Directory (Directory Service) using C#. I find that it is rather unstable. Out of 10 times of data accessing, 2 times the application has problem getting the
|
| Multiple Assemblies Performance | 22 Sep 2003 07:31 GMT | 3 |
First of all, I'm very new at .NET, in fact, just learning the differences for an application rewrite that we are about to undertake. But I do have experience in VB6, C++ and the Java languages and find that I am catching on fairly quickly.
|
| performance monitoring | 19 Sep 2003 19:25 GMT | 1 |
What tool exist in vb.net to do performance monitoring of a web site, like conters, logs and how to use them. Many thanks. Leo
|
| Bad Regex performance | 18 Sep 2003 00:37 GMT | 2 |
I'm experiencing some truly shocking performance from Regex. Seeing as I have next to no idea what I'm doing with Regex, I'm sure I must be doing something wrong. The basic gist of what I'm writing is something that scans text for any in a
|
| .NET Web Forms (Postbacks) VS. Clent Side Java Script. | 11 Sep 2003 14:58 GMT | 1 |
OK, have I come full circle.... ? 1) .NET with VS Studio seemed to be the answer to all my prayers. A) No more worries about coding for Netscape vs. IE. B) Quick Deployment
|
| Why is serialization so SLOW? | 11 Sep 2003 02:45 GMT | 1 |
We have an app that computes a lot of numeric data. We would like to save to disk about 1-2 gigabytes of computed data that includes ints, doubles, strings and some complex objects that contain hashtables. We would like to read this data back into the app and reuse those values and ...
|
| Performance issue with better machine | 11 Sep 2003 01:52 GMT | 1 |
Hello, We have an application that is causing asp.net deadlock when running under stress tests. Here is what's happening, I am running a stress test using
|
| Windows Form Memory Issue | 08 Sep 2003 22:23 GMT | 1 |
I am developing a application and I think I have a memory leak, but I am not sure. What I do know it that if I open and close my window for about 15 minutes I run out of memory and my software crashes. I am not a happy camper.
|
| Custom counters | 05 Sep 2003 16:38 GMT | 5 |
We are using the enterprise instrumentation framework, but now we're getting the following error : "Custom counters file view is out of memory" Anyone an idea ? Peter
|
| Which is faster, Public Field or Property? | 05 Sep 2003 09:41 GMT | 6 |
I have a small "container" class that contains few private fields and accessor properties for each field. Each accessor property simply returns the corresponding field or sets the field value, nothing else. This container class (or actually there are multiple instances) is accessed
|
| system does not reset unread email | 05 Sep 2003 05:29 GMT | 1 |
I hope this is the right area for this post. After the computer screen saver goes on and you go to reactivate the system it always reads that I have 5 unread email and their could be any number or none. Is their a way to reset that value? The number of running programs is not a ...
|
| Datareader : cast object to string... | 03 Sep 2003 19:45 GMT | 4 |
What is the best way to cast fields of a datareader to the correct type? a) msg.Label = CType(reader("Label"), String) b) msg.Label = reader.GetString(2) c) msg.Label = DirectCast(reader("Label"), String)
|
| DB optimisation vs OOP layer separation | 03 Sep 2003 11:07 GMT | 6 |
I'm facing a code-optimisation issue on an asp.net/vb.net/SQL Server 2000 project. A web page containing not much more than 3 DropDownLists is taking nigh on 6 seconds to load, because each ddl opens up a separate connection to the DB, pulls out its data, and closes its own ...
|
| To make unused object available for garbage collection? | 02 Sep 2003 15:17 GMT | 19 |
In java we assign null to an unused abject in order to make it available for garbage collection as soon as we do not need it. This may not much increase the performance but some improve it. (note that: I know garbage collector
|
| Crystal Reports Reuse | 01 Sep 2003 21:32 GMT | 1 |
I had created a Windows Application that used Crystal Reports. Now, I am creating a web application as a second phase of my project. I want to reuse all my Crystal Reports in my Web Application. I am not sure how to go about doing this. Can someone please suggest a way to solve the ...
|