.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… Continue reading
Category: All
Windows Azure Platform has Released
It’s true Windows Azure Platform Released has released on 04/JAN/2010, MSDN Subcribers have the benefit of using it for 8 months or more free of cost and current CTP Users has to upgrade to production by Feb 1st 2010. The commercial availability or sign-up’s will start from Feb 1st 2010 i believe. Welcome to the… Continue reading
AppDev – Free Training for Microsoft® Silverlight™ 2
Description: Download the first four modules from AppDev’s new eight-module “Exploring Microsoft Silverlight 2” course featuring expert Dino Esposito. You will receive approximately four hours of media run time plus sample code. Topics covered in this free download include: 4 Why Use Silverlight? 4 Using Silverlight from DOM 4 First Look at Silverlight 4 Essential… Continue reading
IMPORTANT NOTICE – Upgrade your Windows Azure platform CTP account
Today i received mail from Microsoft Connect, informing me to upgrate Windows Azure platform CTP accounts. From FEB 1st 2010 onwards, Windows Azure will be going to run in production mode/live and we will be charged for out usages. Hhope this would be informative, so posting in. Greetings from the Windows Azure Platform Team! We… Continue reading
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… Continue reading
Telerik Extensions for ASP.NET MVC
Telerik .com has released Telerik RAD Controls for ASP.NET MVC(Beta) to extend the ASP.NET MVC framework by delivering a server-based framework that integrates with client-side modules based on the popular JavaScript library, jQuery. Built on top of the Microsoft ASP.NET MVC framework, these new UI extensions facilitate development of reusable AJAX scripting components and deliver productivity… Continue reading
Windows Azure Platform Benefits for MSDN Subscribers
Windows Azure Platform Benefits for MSDN Subscribers MSDN subscribers can get started developing on the Windows Azure platform today. Starting January 4, 2010, subscribers in many countries (see list on the right) will benefit from compute hours, storage, data transfers, SQL Azure databases and Windows Azure platform AppFabric messages included at no extra charge as… Continue reading
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… Continue reading
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… Continue reading
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… Continue reading