1
vote
Why use .NET?
I agree with the low cost of entry being an attraction to .NET. In addition to only needing notepad (which is true for Java, PHP and other technologies), Microsoft gives away express …
0
votes
How to dispose a class in .net?
IDisposable interface is really for classes that contain unmanaged resources. If your class doesn't contain unmanaged resources, why do you need to free up resources before the gar …
0
votes
Use of var keyword in C#
I don't understand why people start debates like this. It really serves no purpose than to start flame wars at then end of which nothing is gained. Now if the C# team was trying to phase out one st …
0
votes
How can I generate GIF images in .NET?
Why not use a chart control instead of trying to generate GIFs? Unless the requirements are strictly to generate this particular GIF, I think using a chart control offers you more flexibility. …
0
votes
custom service failed to start when there is a unscheduled reboot on the server?
If the problem is caused by the service starting too early after a reboot, why not check to see the last reboot time and skip running the task until so many minutes after reboot. System.Environment …
0
votes
Why are .net configuration settings compiled into assemblies?
When you add a reference to the webservice, you can set the property to make the webservice url dynamic (i.e. read from the configuration file).
Click on the "Web References". Click on your …
0
votes
Why are .net configuration settings compiled into assemblies?
I think I understand what you're saying, Jojoe. Say you add a webservice from www.productionurl.com, the proxy class generated keeps the production url in the source code. At runtime, it uses this …
1
vote
Object reference not set to an instance of an object
Are you sure that's where the error is? Looks like the exception started from the Write method of HttpResponse.
…
1
vote
Newbie ASP.Net programmer needs help
You can force the page to refresh by using a meta tag, or javascript. Or AJAX.
…
0
votes
XML vs Binary performance for Serialization/Deserialization
Have you tried creating custom serialization classes for your classes? Instead of using XmlSerializer which is a general purpose serializer (it creates a bunch of classes at runtime). There's a too …
1
vote
Crystal report - Running thru .NET
A solution is to create a system DSN (ODBC) for connecting to your target database. You can then switch the ODBC to whichever database you want (local,test,stage etc). Also, if you ensure an ODBC c …
0
votes
How do I use a common class between winforms client and web service?
The issue is that when your objects come over the wire, they are deserialized into classes that are private to the web service's proxy. So even though the names of the classes are the same, it's a …
