Process of IIS with ASP.NET Request
Hi to all this is my very first post that describes the Proces of IIS and how it woks on Server, ok lets see it deepThere are two important things which is in our IIS process is The Request and The...
View ArticleIsolated Storage In Silverlight
Isolated storage is the type of storage which we can save some data,files etc on locally with users system, We can have two types of storage one is IsolatedStorageSettings and another is...
View ArticleINotifyProperty Changed in Silverlight
InotifyPropertyChanged is used to intimate the client regarding the changes has been occurs in the databound, for example if we have a name and age property in our ui, let we should intimate something...
View ArticleDataError Validation in Silverlight 4
Data Validation Error in Silverlight is the in-build mechanism, which you can raise the cute and neat error information to the UI. this data error works against the entity which we are using in our...
View ArticleDouble Click in Silverlight DataGrid
Silverlight doesn't have the double click event but we can still handle it with the help of Mouseleftbutton click event, the idea is to handle the intervals between the each click to determine the...
View ArticlePage History and Navigation in Silverlight 4
This sample shows how to handle the recent user history and pages visited, i have coded with last 5 pages visited so you can change it to what ever you need. Lets start by creating a simple...
View ArticleSilverlight Value Converters
When you developing a business application there is more need to formats the data which you are displaying for the end user, (eg) if your application uses the date time property means in some places...
View ArticleDesign Patterns - Factory Pattern
Factory pattern is used to solve the problem of exposing the actual type to the client and also useful to decouple the client code from the actual functional code, that means the client need to aware...
View Article