Search Results

2
votes

anchor IE 6 bug

IE 6 has a strange behaviour, it does not recognizes redirects with anchors in it. The workaround is to add additional ampersand symbol '&' before the '#'. So, in your example, the code will lo …
1
vote

Retrieving IIS 6.0 certificate information in .NET

UPD I just noticed that you need C# but not ASP.NET, so my reply is not correct. You can use System.D …
0
votes

ASP.net Wizard Control Steps on top

This solution uses the custom user control http://www.codeproject.com/KB/aspnet/CustomizingWizardNav.aspx …
0
votes

Returning Element value deep inside XDocument

XDocument XDoc = XDocument.Parse(xfile); XNamespace ns = "PersonInstances"; if (XDoc.Root.Descendants(ns + "PersonId").Any()) { Console.Write(XDoc.Root.Descendants(ns + "PersonId"). …