.NET Framework 4.0 Release Candidate are about going to come soon. I got a chance to go through an MSDN link, which has the listing of all Deprecated/Obsolete Classes in .NET Framework 4.0 as compared to it’s older version. Since .NET Frameworks 2.0 to 3.5 lots of changes has been happened. Version 3.0 and 3.5 […]
Read more โRefresh/Reload Flex App using JavaScript.
When you search to accomplish a task in Flex, and unable to find a solution. Think about javacript, most of the Javascript code will work in Flex, because javascript is the backbone of a Flex Application. I had a requirement were i wanted to refresh/reload the Flex App , but i couldn’t do it in […]
Read more โScottGu – ASP.NET 4 SEO Improvements (VS 2010 and .NET 4.0 Series)
ScottGu has published a new blog in Search Engine Optimization(SEO) improvements in VS 2010 and .NET 4.0 series. I have read it, it’s pretty straight forward, i hope you should also read the blog @ I thought of taking you to one more information article, read below. Why SEO should be important to you SEO […]
Read more โThe Singleton – Design Pattern
The Singleton – Design Pattern The Singleton Design Pattern ensures that only a single instance of a given object can exist. It does this by making the class constructor private so that it will be the singleton itself, and singleton class has full control over when the class instance is created. In order to gain access to […]
Read more โSelect IN query using LINQ
In our SQL Query there is a situation when we want to fetch records based on records within the a Set of RecordID(primary key) Lets look in to one example I have a table Employee which has the columns EmpId, EmpName, EmpDesg etc. You want to select the Employee Records from Employee table with EmpID within 61,62,63 […]
Read more โMore on MVP Pattern – Part 2
Model-view-presenter (MVP) is a user interface design pattern engineered to facilitate automated unit testing and improve the separation of concerns in presentation logic. The model is an interface defining the data to be displayed or otherwise acted upon in the user interface. The view is an interface that displays data (the model) and routes user […]
Read more โ