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 …
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 …
1
vote
Using app.config with Interop Controls
Beth Massi has a blog post that describes how to use a config file for an Interop Control with VB 6.0.
…
1
vote
What is the best way to compare .NET performance vs. VB 6 performance at a customer site?
If you're talking about effectively the same client application written in VB 6.0 and VB.NET then the VB 6.0 app will most likely get to the first screen more quickly (because of .NET JIT compliati …
5
votes
What’s the best way to use .NET classes from Visual Basic 6?
There's lot's of information available at the VB Fusion Developer Center on MSDN. Of particular interest will be …
1
vote
Would you use LINQ to SQL for new projects?
It's worth mentioning that this site is built using LINQ to SQL. Jeff talked about using it on the StackOverflow podcast.
…
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");
…
1
vote
.NET Winform AJAX Login Services
You need to enable access to the authentication service in your web.config
<system.webServices>
<authenticationService enabled="true" requireSSL="true|false"/>
</s …
1
vote
Equivalent to SoftReference in .net?
In addition to the ASP.NET Cache, there is the Caching Application Block from the Microsoft Patterns and Practices group.
…
2
votes
FileUpload - Verifying that an actual file was uploaded
You could check if the file exists using File.Exists before calling SaveAs.
…
2
votes
.NET One Hop Rule and SharePoint Webparts
Impersonate is always set to true in the web.config of a SharePoint application so the problem must be somewhere else. Web Parts that are deployed to the BIN folder of the Web Application run in a …
0
votes
How do I build a secure webservice with .Net?
WCF is the way to go. It offers many possible security solutions, some standards-based and interoperable, some .NET or Windows specific.
A quick …
0
votes
An issue with AJAX web service call: Microsoft JScript runtime error: Sys.Net.WebServiceFailedException:
Is the Web service is a different project? If so, .NET will consider it to be a cross-domain call (I think because the client and service are running in separate instances of the developer web serv …
3
votes
Is the WCF Service Trace Viewer tool indispensable?
If you're doing anything beyond the most basic WCF stuff you should learn to use the tool. If your Kung Fu is strong you can even use it to debug/trace any application across tiers and layers.
…
