Problem : I’m stuck in .NET 2.0 Windows Forms. It doesn’t look like the ability to select multiple nodes exists […]
Category: .Net Code
Process.Start(url) broken on Windows 8/Chrome – are there alternatives?
Problem : To open a URL from a .NET application, many sites (including on StackOverflow) cite this example: Process.Start(“http://www.google.com/”); On […]
Passing arguments to JavaScript function from code-behind
Problem : I would like to call a javascript function from an aspx control. For instance, suppose I had: <html […]
Double ToString – No Scientific Notation [duplicate]
Problem : This question already has answers here: Double to string conversion without scientific notation (18 answers) Closed 9 years […]
Unicode in Content-Disposition header
Problem : I am using HttpContext object implemented in HttpHandler child to download a file, when I have non-ascii characters […]
windows form .. console.writeline() where is console?
Problem : I created a windows form solution and in the constructor of a class I called Console.WriteLine(“constructer called”) But […]
Distinct list of objects based on an arbitrary key in LINQ
Problem : I have some objects: class Foo { public Guid id; public string description; } var list = new […]
NUnit Test Run Order
Problem : By default nunit tests run alphabetically. Does anyone know of any way to set the execution order? Does […]
Objects that represent trees [closed]
Problem : Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow […]
MVC3 DropDownList + ViewBag issue
Problem : This code works fine List<StateModelView> stateList = (from x in db.States select new StateModelView { ID = x.ID, […]