1
vote
How to get list of all domains in Active Directory using C#
Using DirectorySearcher you can connect and read the structure of one Active Directory, including the structure (organization units, groups, users, computers, domain controllers). In order to conne …
4
votes
synch enumeration with static data from a database
I use T4 templates in Visual Studio 2008. This way, I can force code generation during build and it generates Enums for each table that I want.
A good starting point would be …
0
votes
Can the PostbackUrl be set for a GridView CommandField?
Use a HyperLinkField column in your GridView:
<asp:HyperLinkField AccessibleHeaderText="Edit" DataNavigateUrlFields="ActivityId" DataNavigateUrlFormatString="AcitivtyEdit.aspx?id …
1
vote
Can the PostbackUrl be set for a GridView CommandField?
Leppie is right. The GridView has no PostbackUrl property. However, you can do what you want by using a standard control, which has a PostbackUrl property.
<asp:TemplateField Ac …
7
votes
How to compare two elements of the same but unconstrained generic type for equality?
Did you try something like this?
public class Example<TValue>
{
private TValue _value;
public TValue Value
{
get { return _value; }
set
{
…
2
votes
Is there a library for notification/alert in .NET?
I think it's worth looking to frameworks like Windows Live Alerts: http://dev.live.com/alerts/
…
0
votes
How to Create a Listener for WCF ServiceHost events when service is hosted under IIS?
The whole point of WCF services and IIS hosting is to achieve scalability and allow easy hosting. Although you could connect to events exposed by the ServiceHostBase class (see …
0
votes
C# VS.NET 2008 Changing settings per configuration
Besides all these, MS promised to add this feature in VS 2010.
…
4
votes
What is the equivalent of Java’s AbstractMap in C#?
System.Collections.Generic namespace contains three implementations of IDictionary<K,V>: Dictionary<TKey, TValue>, SortedDictionary<TKey, …
1
vote
How to Create a Listener for WCF ServiceHost events when service is hosted under IIS?
Well, I'm out of ideas, but I think that this article contains your answer in the chapter: "Accessing ServiceHost …
1
vote
Dynamic Paramter Count for SQL with C#
I hear that SQL Server 2008 has a feature called Table Parameters, so you can pass a Table as a parameter to a Function or Stored Procedure.
Until then, you could use the classic:
…
3
votes
Why are commas inserted when innerHTML is copied after Postback?
I don't have time to read your entire code, but please pay attention to the following: you may be copying a HTML chunk and creating a clone of it in your code. This way, you actually get two textbo …
1
vote
Is there a c# library for wrapping multiple SCM provider’s APIs?
MSSCCI would help many source control products to be directly accessible from Visual Studio, but not necessarily usable from .NET code. To my knowledge, there is no .NET library that abstracts acce …
1
vote
Web forwarding proxy in C# or PHP available?
Although quite old, the Org.Mentalis.Proxy could be a good starting point for an example proxy implementation in C#. You can find it here: …
0
votes
Internationalization in the database
If you refer to making your app support multiple languages at the UI level, then there are more possibilities. If the labels never change, unless when you release a new version, then resource files …
