Apple’s iPhone 4 wins best mobile device award

Ref: A host of hot new Android phones from Samsung, LG Electronics, HTC, Sony Ericsson made their debut at Mobile World Congress 2011 here this week, but it was the relatively venerable iPhone 4 from Apple that was named the show’s best mobile device.

The iPhone 4 is months old and early on suffered notable reception problems. Its maker didn’t even come to the show. But the influence of Apple, reaching all the way from Silicon Valley to this cosmopolitain event, was clear.

The iPhone 4 was lauded by judges for its “great screen, sharp design, fantastic materials, and phenomenal ecosystem for app developers. Continue reading

Posted in Mobile Development | Tagged | 401 Comments

Nokia giving developers free E7 and free WP7 device

Ref:Nokia’s decision to switch from Symbian to Windows Phone 7 might not have been met with glee from many developers, but the company looks to be addressing its coding community in a decent way. SlashGear has been passed details of an email sent to Nokia Launchpad program members, in which they’re promised a free Nokia E7 together with “one free Nokia WP7 device, as soon as it becomes available.”

Launchpad is Nokia’s mobile app development program, usually priced at €300 annually but currently free for the first year. Membership is available – on an approved application basis – for individuals and companies, and regularly includes early access to APIs and SDKs, promotions in the Ovi Store and invitations to training events.

As well as free devices, however, this new change will see free tech support on all Nokia technologies for the next three months (limited to ten tickets at most) and a free “user experience evaluation” of any apps developers have coded. There’s also the promise of extended business development support. More on the Nokia change in our Stephen Elop interview from MWC 2011 this week.

Posted in Mobile Development, windows phone 7 | Tagged | 624 Comments

Orchard 1.0 has finally arrived

Orchard is a free, open source, community-focused project aimed at delivering applications and reusable components on the ASP.NET platform.

Orchard will create shared components for building ASP.NET applications and extensions, and specific applications that leverage these components to meet the needs of end-users, designers, developers, and Web professionals. Additionally, we seek to create partnerships with existing application authors to help them achieve their goals. Continue reading

Posted in .Net, Application Development, CMS, Web Development | Tagged | 752 Comments

Kinect Official Software Dev Kit Coming From Microsoft, Report Says

Microsoft’s motion-control interface the Kinect has been wildly popular and has been a big hit with hacker communities using it to control all kinds of unexpected apps outside the XBox gaming system, but according to a new report today from Windows watch-dog blog Winrumors, Microsoft is preparing an official Software Developement Kit (SDK) that will let 3rd parties build any Windows software to include Kinect control support.

“Microsoft is set to unveil driver support and an SDK in the coming months and will allow third-party developers to create titles that utilize the Kinect sensor when plugged into a PC,” writes blogger Tom Warren. Continue reading

Posted in community launch, Development Tools, Microsoft | Tagged , , | 435 Comments

Windows Server AppFabric

Windows Server AppFabric release we are evolving the application server capabilities in Windows Server to introduce enhanced application hosting and administration tooling (previously codename “Dublin”) for services written using WCF and WF programming models, and providing distributed cache capabilities (previously codename “Velocity”) for .NET applications. The high-level architecture overview of AppFabric is available at http://msdn.microsoft.com/en-us/library/ee677374.aspx.

Architecture Overview

In parallel, we were also working to elastically scale .NET applications and make them highly available, using commodity hardware. Out of this effort came the distributed in-memory cache (formerly known as Project “Velocity”) which helps cache frequently used data in-memory across multiple machines thereby increasing the performance and scale of these applications. Continue reading

Posted in Server Technologies | Tagged | 365 Comments

Set Unique Key in Sql Server using visual editor

Right click on the column which you want to set unique key(See figure 1).

figure: 1

figure: 1


Then click on “Indexes/Keys…”.Then there will be a window , which shows on the image(figure 2).
Figure:2

Figure:2


On this window click “Add” button for new key and set it’s properties is Unique=Yes which shows on marked area of the figure 2.
I think its an easy way.
Thanks

Posted in .Net | Tagged , , | 728 Comments

configurationmanager does not exist in the current context

To read connection string from web.config we need to use configurationmanager class and its method which root class is System.Configuration; If you want to use you need to add namespace using System.Configuration;

Though you used this namespace, when you will try to use configurationmanager class then system shows an error “configurationmanager does not exist in the current context”.
To solve This Problem:

ConfigurationManager.ConnectionStrings["ConnectionSql"].ConnectionString;

configurationmanager does not exist in the current context

configurationmanager does not exist in the current context


Continue reading

Posted in ASP.NET, C#, Languages | Tagged , , | 783 Comments

Enable saving of changes that require table to be re-created SQL server 2008

When working with SQL Server Management studio, if you use the Design view of a table and attempt to change a table then it shows this message “Enable saving of changes that require table to be re-created SQL server 2008″.

“Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can’t be re-created or enabled the option Prevent saving changes that require the table to be re-created.”

it is enabled by default when you install SQL Management Studio.

prevent saving table sql server 2008

prevent saving table sql server 2008


This is a great feature to prevent accidents from occurring
For the developer or programmer its a noising matter, to prevent this message go to Continue reading

Posted in Database, MS SQL, SQL SERVER | Tagged , | 739 Comments

How to add Google Map in asp.net

Today I have added Google Map my asp.net application successfully !! Don’t worry it’s not a big deal. Very easy and you will find a lots of article, tutorial about it. For using google map you just need a google account for google map api and basic JavaScript knowledge. For non commercial use google map is free.

In aspx page add Google Map API KEY in header part of html….like this

<head >
<script src=”http://maps.google.com/maps?file=api&v=2& Continue reading

Posted in .Net, Application Development, ASP.NET, asp.net 4.0, body, Client Side(Scripting), HTML, javascript, Languages, Server Side, Web Development | Tagged | 1 Comment

Mono 2.8 is released which covers C# 4.0

Ref:Mono, an open source, cross-platform, implementation of C# and the CLR that is binary compatible with Microsoft.NET. Using this one can developed .net based application in unix and linux.

Mono 2.8 is a portable and open source implementation of the .NET framework for Unix, Windows, MacOS and other operating systems. Continue reading

Posted in .Net, Application Development, ASP.NET, asp.net 4.0, C#, Operating System, Web Development | Tagged , , | 523 Comments