2
votes
Including a WebService reference in a control
You can add a ScriptManagerProxy in the code or the markup of your control and add the service reference through it. The settings in the ScriptManagerProxy are merged with the "real" ScriptManager …
3
votes
Host C# winforms in VB6 applications
The Interop Forms Toolkit allows you to create .NET Forms and User Controls that can be used in VB 6.0 applications. This allows you to migrate VB 6.0 applications to .NET over time (a form or part …
1
vote
Where can I find a good tutorial describing how to leverage a SOAP web service from a Winforms application in .NET 3.5?
This series of webcasts by Michele Leroux Bustamante are a great resource to get started with services.
ht …
4
votes
What is the best logging solution for a C# .NET 3.5 project
One of the best kept secrets in the .NET Framework is the End to End Tracing capability. It's mostly associated with WCF but it works across client and server tiers. Check out Scott Hanselman's pod …
4
votes
How can I check my .NET assembly for freshness?
You could use AssemblyFileVersion attribute. From the docs, the AssemblyFileVersion
Instructs a complier to use a specific version number for the Win32 file version resource. The Win32 …
3
votes
How can I programatically use C# to append multiple DOCX files together?
You don't need to use automation. DOCX files are based on the OpenXML Formats. They are just zip files with a bunch of XML and binary parts (think files) inside. You can open them with the Packagin …
0
votes
To underscore or to not to underscore, that is the question
I like to use underscores in front of my private fields for two reasons. One has already been mentioned, the fields stand out from their associated properties in code and in Intellisense. The secon …
2
votes
What’s the purpose of implementing the IDisposable interface?
It all has to do with the garbage collection mechanism. Chris Sells describes garbage collection, finalizers, and the reason for the Dispose pattern (and the IDisposable interface) …
1
vote
Search ASP.Net Profiles
The functionality you want is included in the Profile API.
You can get an individual users profile using:
HttpProfile profile = Profile.GetProfile("Fred");
…
2
votes
FileUpload - Verifying that an actual file was uploaded
You could check if the file exists using File.Exists before calling SaveAs.
…
8
votes
Any performance difference between int.Parse() and Convert.Toint() ?
When passed a string as a parameter, Convert.ToInt32 calls int.Parse internally. So the only difference is an additional null check.
Here's the code from .NET Reflector
publ …
1
vote
overhead to unused “using” declarations ?
The C# code editor in Visual Studio 2008 has a feature to remove unused using statements.
Right-click and select Organize Usings | Remove Unused Usings. …
1
vote
Garbage Collection on one object, C#
You can't perform garbage collection on a single object. You could request a garbage collection by calling GC.Collect() but this will effect all objects subject to cleanup. It is also highly discou …
0
votes
AJAX ScriptManager in UserControl
I think the Init event should work. Use the technique you described (i.e. checking that ScriptManager.GetCurrent returns null before adding) but when you add the ScriptManager, make sure you add it …
1
vote
C# Web Service won’t output JSON, only XML
As far as I know, the ScriptService attribute just allows the service to automatically create a JavaScript proxy (by appending /js to the endpoint address - ScheduleComputerDS.asmx/js in your case) …
