IntroductionThe 404 or Not Found error message is an HTTP standard response code, there are many reasons for a 404 to show up like, Mistyped URL Pages have been moved. Pages have been deleted. The default error page for 404 may look something similar to this: The purpose of this blog/article is to discuss ways to handle 404 smartly in ASP.NET. So the big question is how? On an event of 404, the first thing I would try do is to catch the event and redirect to somewhere where I can handle it in a more ......
Problem: In one of my new project after generating some codes with .NetTiers, when I tried to compile the project in VS2005 IDE it started showing this error:The item "Audit.cs" was specified more than once in the "Sources" parameter. Duplicate items are not supported by the "Sources" parameter. MyProject.Net.Entities As you can guess there is not enough information or any direction on how to resolve this issue. Solution: As usual started googling and found some hints that in the csproj file there ......
Someone asked me today:I have a text field and a drop down menu, based on the values of these 2 when i click on a button an api call is made to get the results. Now i want to display these results in a ListView using GridView. How can i use ObservableCollection to read the data when the search button is hit.My Short Reply: Creating an ObservableCollection is pretty straight forward.1. For example say we have class Customer { id, name, address }2. Now lets create a DataSrc that returns an ObservableCollection ......
WPF Databinding Resources:source: http://www.actiprosoftware.... Lockable Collections (alexshed.spaces.live.com) - 31 views, unrated Shows how to create a collection locking mechanism to allow some clients to change the collection while disallowing others. Posted 10/01/2007 by Actipro Software Support Binding to the Current Item in WPF (www.interact-sw.co.uk) - 117 views, unrated Shows some use of concise data binding syntax ......
Check this out at Scotts Blog: source: http://weblogs.asp.net/scot... Releasing the Source Code for the .NET Framework Libraries One of the things my team has been working to enable has been the ability for .NET developers to download and browse the source code of the .NET Framework libraries, and to easily enable debugging support in them. Today I'm excited to announce that we'll be providing this with the .NET 3.5 ......