kalyanms1
Name: kalyanms1
Score: 2,002.41
Last Seen: 2 days, 16 hours, 29 minutes ago
Member Since: 3 February, 2009
DotNetShoutout
atom rss
2
Shouts

Windows 8 File Explorer Tips | TechBubbles

posted by kalyanms1kalyanms1 2 days, 16 hours, 29 minutes ago
Sunday, May 19, 2013 11:36:34 AM GMT
File Explorer is a great way to see the files and folders on your computer as well as libraries, folders and control panel.This post outlines some enhancements and tips in using File Explorer in Windows 8. (more)
category: How To | clicked: 0 | comment | | source: www.techbubbles.com
tags:
3
Shouts

Top Developer News this week (May Week 2) | TechBubbles

published 4 days, 18 hours, 38 minutes ago posted by kalyanms1kalyanms1 9 days, 15 hours, 21 minutes ago
Friday, May 17, 2013 9:27:50 AM GMT Sunday, May 12, 2013 12:44:40 PM GMT
This post outlines Top links for Microsoft developers in May week2. Windows Blue public preview available date Build conference will announce the Windows Blue public preview. “Windows Blue” is a code name for the next release of Windows. If you attend the Build conference then you will get the Windows Blue preview. (more)
category: Architecture | clicked: 26 | comment | | source: www.techbubbles.com
tags:
2
Shouts

Validation Components in ASP.NET MVC | TechBubbles

published 4 days, 18 hours, 38 minutes ago posted by kalyanms1kalyanms1 14 days, 15 hours, 49 minutes ago
Friday, May 17, 2013 9:27:50 AM GMT Tuesday, May 07, 2013 12:16:25 PM GMT
Validating the user input and showing a user-friendly error message is an important step in Web Application development. ASP.NET MVC framework provides validation features which helps developer to validate model values. The validation features in MVC allows you to write the validation using attributes which is called data annotations. This post outlines the data annotation features that you can use in ASP.NET MVC application development.Data Annotations attributes can find in System.ComponentModel.DataAn... (more)
category: Web Dev | clicked: 18 | comment | | source: www.techbubbles.com
tags:
2
Shouts

Top developer news this week | TechBubbles

published 7 days, 11 hours, 55 minutes ago posted by kalyanms1kalyanms1 16 days, 16 hours, 29 minutes ago
Tuesday, May 14, 2013 4:10:42 PM GMT Sunday, May 05, 2013 11:37:16 AM GMT
This post gives you the links for latest announcements for Microsoft developers. Announcing the Release of WebMatrix3 As most of the developers probably know that WebMatrix is free light-weight tool for building ASP.NET applications. There are tons of new features in this release including Windows Azure integration, ScottGu outlined the features here and this tool can be downloaded from here (more)
category: Web Dev | clicked: 16 | comment | | source: www.techbubbles.com
tags:
2
Shouts

Using Caching in ASP.NET Web Applications | TechBubbles

published 7 days, 11 hours, 55 minutes ago posted by kalyanms1kalyanms1 17 days, 1 hour, 50 minutes ago
Tuesday, May 14, 2013 4:10:42 PM GMT Sunday, May 05, 2013 2:16:15 AM GMT
Caching is a way which you can use to improve the performance of an ASP.NET Web applications. Caching is a location where you can store the data and access quickly. You have to use caching carefully and this post explains different caching mechanisms that available in ASP.NET web applications.The three ways that you can use to store the Cache data in ASP.NET applications are (more)
category: Web Dev | clicked: 30 | comment | | source: www.techbubbles.com
tags:
2
Shouts

Seeding a Database in Entity Framework | TechBubbles

published 8 days, 18 hours, 9 minutes ago posted by kalyanms1kalyanms1 18 days, 16 hours, 7 minutes ago
Monday, May 13, 2013 9:56:57 AM GMT Friday, May 03, 2013 11:58:26 AM GMT
The code-first approach of Entity Framework creates the database in LocalDB instance of SQL Server Express. The Entity Framework uses the model’s property names and data types to create the tables.Entity Framework uses EdmMetadata table to synchronize model classes with the database schema. To keep the database in sync with the model you need to re-create an existing database using Entity Framework. EF allows you to create the database every time when application starts or only create when it detects a c... (more)
category: Web Dev | clicked: 14 | comment | | source: www.techbubbles.com
tags:
1
Shouts

Windows Azure support to SharePoint 2013 | TechBubbles

published 14 days, 18 hours, 19 minutes ago posted by kalyanms1kalyanms1 21 days, 15 hours, 1 minute ago
Tuesday, May 07, 2013 9:46:53 AM GMT Tuesday, April 30, 2013 1:05:12 PM GMT
Last week Microsoft announced general availability of Infrastructure as a Service(IaaS) support for Windows Azure. You can signup here to see what is new in this release? Key Enhancements are made in General Availability like creating a new virtual machine and virtual networks in Windows Azure. This post outlines the steps to create a new SharePoint 2013 virtual machine and setting up a SharePoint farm on Windows Azure. (more)
category: Architecture | clicked: 5 | comment | | source: www.techbubbles.com
tags:
2
Shouts

Scaffolding in ASP.NET MVC4 | TechBubbles

published 18 days, 18 hours, 45 minutes ago posted by kalyanms1kalyanms1 26 days, 16 hours, 48 minutes ago
Friday, May 03, 2013 9:21:14 AM GMT Thursday, April 25, 2013 11:18:11 AM GMT
Scaffolding in ASP.NET MVC generates the code for create, read, update and delete operations in your application. This post outlines the different Scaffolding templates available in MVC4. If you do not like the default scaffolding then you can customise the code generation.You need a model to start working with scaffolding so build a model first by creating new ASP.NET MVC4 project in Visual Studio 2012 and select Internet Application template. Read this post to understand the each application template p... (more)
category: Web Dev | clicked: 13 | comment | | source: www.techbubbles.com
tags:
2
Shouts

Adaptive Rendering in ASP.NET 4.5 | TechBubbles

published 22 days, 18 hours, 33 minutes ago posted by kalyanms1kalyanms1 32 days, 16 hours, 31 minutes ago
Monday, April 29, 2013 9:32:39 AM GMT Friday, April 19, 2013 11:34:37 AM GMT
Adaptive Rendering also called responsive design taking the advantage of existing HTML markup and CSS to use inside the ASP.NET Web applications. This post outlines about Adaptive Rendering, display modes and out of the box ASP.NET MVC mobile template.What is unique about .NET 4.5 application templates that ships out-of-the box uses a technique called responsive design. Responsive design is functionality of CSS to redefine the layout properties of your page based on the web and devices that you are using, (more)
category: Web Dev | clicked: 13 | comment | | source: www.techbubbles.com
tags:
2
Shouts

ASP.NET MVC RAZOR View Engine Overview | TechBubbles

posted by kalyanms1kalyanms1 34 days, 16 hours, 15 minutes ago
Wednesday, April 17, 2013 11:50:58 AM GMT
ASP.NET MVC contains two view engines named Razor view engine and Web Forms view engine. This post outlines the Razor view syntax, sample code expressions, code blocks, layouts and compares some code expressions with Web Forms view engine.The Razor View engine was introduced in ASP.NET MVC3 and it is default view engine that you get when you create new MVC project in Visual Studio. Razor view allows you to write simple mark up and its syntax is simple.Razor views that use C# syntax has the .cshtml file e... (more)
category: Web Dev | clicked: 6 | comment | | source: www.techbubbles.com
tags:
1
Shouts

Page Inspector in Visual Studio 2012 | TechBubbles

posted by kalyanms1kalyanms1 40 days, 15 hours, 39 minutes ago
Thursday, April 11, 2013 12:27:21 PM GMT
The typical web page in the application includes references to JavaScript and CSS files and images. It is hard to debug the page without a tool to find a certain piece of HTML where it is coming from. The Page Inspector is a debugging tool that runs inside Visual Studio and it comes with the Visual Studio. This post explains the Page Inspector features and outlines how to use it inside Visual Studio editor. (more)
category: Web Dev | clicked: 2 | comment | | source: www.techbubbles.com
tags:
2
Shouts

ASP.NET MVC 4 Application Templates explained | TechBubbles

posted by kalyanms1kalyanms1 42 days, 16 hours, 51 minutes ago
Tuesday, April 09, 2013 11:15:02 AM GMT
When you create a new MVC 4 project in Visual Studio 2012, you will be presented with different option as shown in the below picture, Each project template sets up different folders in your application. This post explains the each project template purpose (more)
category: Web Dev | clicked: 5 | comment | | source: www.techbubbles.com
tags:
3
Shouts

Visual Studio 2012 Update 2 Announced | TechBubbles

posted by kalyanms1kalyanms1 46 days, 14 hours, 37 minutes ago
Friday, April 05, 2013 1:29:12 PM GMT
As promised Microsoft announcing periodic updates to Visual Studio 2012, As part of this few months back Visual Studio 2012 Update 1 has released features and download link can be found here. Few hours ago they have announced Update 2 which can be downloaded from here. This post out lines the features in this update. The main feature in this release are Agile Planning , quality enablement , line of business applications and improved developer experience. It is a cumulative update, if you miss installing ... (more)
category: Architecture | clicked: 5 | comment | | source: www.techbubbles.com
tags:
3
Shouts

ASP.NET Profiles overview | TechBubbles

posted by kalyanms1kalyanms1 46 days, 20 hours, 12 minutes ago
Friday, April 05, 2013 7:54:15 AM GMT
ASP.NET Profiles feature allows the users to personalize their content on the web site. Profiles can be used in different scenarios like when you visit the news web site or sports website then you can allow the user to choose their favourite categories and then you can store them in a profile to show the pages based on their preferences. Using ASP.NET Profiles you can keep the user details such as First Name, Last Name, Date of Birth and their interests. You can use this information to create a closer re... (more)
category: Web Dev | clicked: 1 | comment | | source: www.techbubbles.com
tags:
2
Shouts

Unit testing improvements in Visual Studio 2012 Update2 | TechBubbles

posted by kalyanms1kalyanms1 49 days, 16 hours, 14 minutes ago
Tuesday, April 02, 2013 11:51:59 AM GMT
This post explains the features that have been introduced for unit testing in Visual Studio 2012 update 1 and 2. Visual Studio 2012 update 1 and 2 introduced many new features for testing which can be read here. New features grouping and filtering tests by project, by trait or by class enables testers to work with lots of tests easier. (more)
category: Agile | clicked: 6 | comment | | source: www.techbubbles.com
tags:
1
Shouts

Testing Features added in Visual Studio 2012 Update 2 | TechBubbles

posted by kalyanms1kalyanms1 50 days, 15 hours, 1 minute ago
Monday, April 01, 2013 1:04:56 PM GMT
This post explains the enhanced testing features that were introduced with Visual Studio 2012 update 2. In Visual Studio 2012 Update 2 Microsoft Test Manager (MTM) has been updated with new features enabling manual testers more productive and efficient. The new feature Test Management and execution from light-weight browser based environment. This web based test management features enables manual testers to test non-Windows applications and executing test cases without installing test-specific tools. You... (more)
category: Web Dev | clicked: 3 | comment | | source: www.techbubbles.com
tags:
1
Shouts

Using Promises in JavaScript | TechBubbles

posted by kalyanms1kalyanms1 51 days, 15 hours, 2 minutes ago
Sunday, March 31, 2013 1:03:50 PM GMT
Promises in JavaScript gives you great power of asynchronicity while you are creating Windows 8 Apps or Web Applications. Promises gives you the ability to call something without blocking your UI thread. Instead of waiting for a call to return something, let that function fire when it complete. In this way you can continue the execution for the user. You are definitely need to know and use promises if you are going to develop Windows Apps. The reason is in Windows RT which is the API on windows where you... (more)
category: Web Dev | clicked: 4 | comment | | source: www.techbubbles.com
tags:
22
Shouts

CORS support for ASP.NET Web API | TechBubbles

published 54 days, 16 hours, 46 minutes ago posted by kalyanms1kalyanms1 56 days, 13 hours, 39 minutes ago
Thursday, March 28, 2013 11:19:52 AM GMT Tuesday, March 26, 2013 2:26:37 PM GMT
Cross-origin resource sharing (CORS) is a standard that allows your web pages to make AJAX requests to another domain. The idea of implementing this standard to ASP.NET Web API came from Brock Allen. This post outlines the preview of CORS support for ASP.NET Web API.If you try to make a request to a service that is hosted in different domain then browser actually blocks that request. Create a new ASP.NET Web API project in Visual Studio 2012 and run the application then you will see the result something ... (more)
category: Web Dev | clicked: 92 | comment | | source: www.techbubbles.com
tags:
12
Shouts

Creating SharePoint App using Office Developer Tools | TechBubbles

published 54 days, 16 hours, 46 minutes ago posted by kalyanms1kalyanms1 58 days, 14 hours, 10 minutes ago
Thursday, March 28, 2013 11:19:52 AM GMT Sunday, March 24, 2013 1:55:48 PM GMT
Office Developer tools for Visual Studio 2012 allows you to develop Apps for office and SharePoint 2013. The tools can be downloaded from here. This post outlines the steps to create the SharePoint ContactListApp using Visual Studio 2012. (more)
category: Metro | clicked: 20 | comment | | source: www.techbubbles.com
tags:
12
Shouts

Office Developer Tools for Visual Studio 2012 | TechBubbles

published 54 days, 16 hours, 46 minutes ago posted by kalyanms1kalyanms1 59 days, 13 hours, 16 minutes ago
Thursday, March 28, 2013 11:19:52 AM GMT Saturday, March 23, 2013 2:49:50 PM GMT
Using Developer Tools for Visual Studio you can develop new class Apps for Office and SharePoint 2013.Developing Apps is as easy as developing web applications, you can use HTML and Java Script and server side languages such as C# and VB for App development.You can then host the App in Office store or Corporate environment. The developer tools for Visual Studio 2012 can be downloaded from here. This post outlines the steps to create simple office App for word using Visual Studio new developer tools. Aft... (more)
category: Web Dev | clicked: 38 | comment | | source: www.techbubbles.com
tags:
Previous 1 2 3 4 5 6 7 8 9 10 11 Next