kalyanms1
Name: kalyanms1
Score: 2,002.41
Last Seen: 18 days, 13 hours, 41 minutes ago
Member Since: 3 February, 2009
DotNetShoutout
atom rss
5
Shouts

Document tabs in Visual Studio 11 Developer Preview

published 639 days, 3 hours, 41 minutes ago posted by SergeyVlasovSergeyVlasov 641 days, 11 hours, 9 minutes ago
Monday, September 19, 2011 6:34:23 PM GMT Saturday, September 17, 2011 11:06:30 AM GMT
Visual Studio 11 Developer Preview was released this week. Let's see what's new with document tabs in the IDE. (more)
category: How To | clicked: 40 | 16 comments | | source: blog.tabsstudio.com
tags: VS11, tabs
2
Shouts

Creating Data-driven web apps using ASP.NET 4.5 Web Forms | TechBubbles

posted by kalyanms1kalyanms1 640 days, 1 hour, 45 minutes ago
Sunday, September 18, 2011 8:30:06 PM GMT
Data binding is simpler and more powerful in ASP.NET 4.5 Web Forms.This post discuss about creating Data-driven application using ASP.NET 4.5 preview. It also discuss about different Data access methods, particularly about model access binding features in Web Forms. You need to install Visual Studio 11 Developer preview to use this feature. You can read this post for links to download etc.. Typical ASP.NET developer may use one of the following Data Access mechanisms for binding the dataYou may setup yo... (more)
category: Web Dev | clicked: 3 | comment | | source: www.techbubbles.com
tags: ASP.NET 4.5, ASP.NET 4.5 Web Forms
2
Shouts

Visual Studio 11 Web and .NET 4.5 Developer Preview and ASP.NET 4.5 | TechBubbles

posted by kalyanms1kalyanms1 640 days, 4 hours, 36 minutes ago
Sunday, September 18, 2011 5:39:12 PM GMT
Three days ago, Visual Studio 11 Developer Preview and .NET 4.5 were announced. You can get the more details from here. You can download the Visual Studio 11 Developer preview from here. You can run Visual Studio 2010 and Visual Studio 11 developer preview side by side.   .NET Framework 4.5 Developer Preview can be downloaded from here Visual Studio 11 Developer Preview includes new features likeEditor support for CSS3Editor support for HTML5 and Javascript More about the features and ASP.NET 4.5 dev... (more)
category: Web Dev | clicked: 5 | 1 comment | | source: www.techbubbles.com
tags: ASP.NET 4.5
7
Shouts

Web Standards Update for Visual Studio 2010 Editor | TechBubbles

published 644 days, 4 hours, 2 minutes ago posted by kalyanms1kalyanms1 644 days, 23 hours, 47 minutes ago
Wednesday, September 14, 2011 6:12:58 PM GMT Tuesday, September 13, 2011 10:28:14 PM GMT
Web Standards Update for Visual Studio 2010 SP1, which provides HTML5 and CSS3 support. Microsoft team said Visual Studio next version have better support for HTML5. This update gives you HTML5 Intellisense and fixes some bugs in SP1 support for HTML5. CSS3 intellisense on latest specification from W3C. Download Web Standards Update for Visual Studio 2010 Editor Please note this is not an official release from Microsoft. HTML 5 Features support in this update Complete Valid Markup - We need a type ... (more)
category: Architecture | clicked: 34 | 1 comment | | source: www.techbubbles.com
tags: Visual Studio 2010
3
Shouts

Deploying SSIS packages into SQL Server vs Deploying as a File | TechBubbles

published 645 days, 14 hours, 31 minutes ago posted by kalyanms1kalyanms1 646 days, 2 hours, 6 minutes ago
Tuesday, September 13, 2011 7:44:49 AM GMT Monday, September 12, 2011 8:09:46 PM GMT
In earlier days we have the options to save the DTS packages to SQL Server or to File System. Many of you trying to understand the trade offs between them. This post list out the advantages of both options. Advantages of Saving and Deploying SSIS packages to File System We can use Source control system manage the versions. More secure when using the encrypt with user key encryption. Packages are available when you save locally. not subject network downtime problems. We can easily load the file syste... (more)
category: Data | clicked: 5 | comment | | source: www.techbubbles.com
tags: SQL Server, SSIS
3
Shouts

Using For Loop and Foreach Loop Containers in SSIS | TechBubbles

published 646 days, 10 hours, 6 minutes ago posted by kalyanms1kalyanms1 647 days, 31 minutes ago
Monday, September 12, 2011 12:09:00 PM GMT Sunday, September 11, 2011 9:44:25 PM GMT
SQL Server Integration Services supports two container tasks name For Loop and Foreach loop. These containers supports to execute the repetitive workflows in controlled way. The For Loop has three expressions that control it’s execution and termination. This post also discuss about Foreach loop container in SSIS. The three expressions are InitExpression  The For Loop evaluates the InitExpression exactly once at the start of the loop execution. The initialized variables are used later in other expressi... (more)
category: Data | clicked: 4 | 1 comment | | source: www.techbubbles.com
tags: SQL Server, SQL Server 2008, SSIS
2
Shouts

Using Data Profiling Task in SSIS | TechBubbles

published 646 days, 10 hours, 6 minutes ago posted by kalyanms1kalyanms1 648 days, 1 hour, 47 minutes ago
Monday, September 12, 2011 12:09:00 PM GMT Saturday, September 10, 2011 8:28:50 PM GMT
Data Profiling is important in data quality processing and transformation. It provides a way to investigate large datasets and to identify incorrectly formatted data. This post explains doing data analysis using Data Profiling task. Data Profiling task helps you to Identify the problems with your data. Example: Finding the products in your data  which are not following the naming pattern. Identify the missing functional dependencies between columns. Example: State and Zip code columns. It helps you ide... (more)
category: Data | clicked: 5 | comment | | source: www.techbubbles.com
tags: SQL Server 2008, SSIS
5
Shouts

Comparing Two Generic Lists in C# | TechBubbles

posted by kalyanms1kalyanms1 654 days, 58 minutes ago
Sunday, September 04, 2011 9:17:15 PM GMT
Today I come across the problem while comparing two different lists. The basic requirement is finding the records which are present in one list but not in other and vise versa. I thought of sharing this piece of code which might  help for you to do the same task. Let us take the two Generic lists named timeEntryList and caseDataList. The aim is comparing these two lists and bring the results into two separate list. 1: var auditTimeEntryList = 2: timeEntryList.Where(timeEntry => !caseDataList.Any(... (more)
category: Architecture | clicked: 33 | 1 comment | | source: www.techbubbles.com
tags: lists, C# .NET
4
Shouts

Creating Parallel Workflow in SharePoint 2010 | TechBubbles

posted by kalyanms1kalyanms1 658 days, 1 hour, 55 minutes ago
Wednesday, August 31, 2011 8:20:55 PM GMT
This post explains how to create parallel tasks in SharePoint 2010 workflow. The idea is we are going to assign the tasks to people and they can complete them in any order without having a dependency on one another. In this example we create a custom SharePoint list which contains a vacation request details looks as below The Request contains a title field which represents the type of request and then two people(Team Lead and Department Head) who requires to approve this request. We then create a t... (more)
category: Architecture | clicked: 46 | comment | | source: www.techbubbles.com
tags: SharePoint 2010, Sharepoint
4
Shouts

Displaying Custom HTML message in SharePoint 2010 | TechBubbles

posted by kalyanms1kalyanms1 659 days, 1 hour, 59 minutes ago
Tuesday, August 30, 2011 8:16:25 PM GMT
This post explains about displaying a custom HTML message in Visio Web access web part on a SharePoint web part page. We are using two web parts content editor webpart and Visio Web access webpart as shown below We are going to write JavaScript which uses Visio Services JavaScript Object model to display custom HTML message on top of Visio Web access web part. The steps are 1. Create a HTML button 2. Add a handler to Sys.Application.Load event 3. Create a handler for Vwa.Diagramcomplete event 4... (more)
category: Architecture | clicked: 15 | comment | | source: www.techbubbles.com
tags: SharePoint 2010
3
Shouts

Accessing Web Services from Sandboxed Silverlight application in SharePoint 2010 | TechBubbles

posted by kalyanms1kalyanms1 659 days, 23 hours, 20 minutes ago
Monday, August 29, 2011 10:55:05 PM GMT
This post discuss about accessing public web services from sandboxed Silverlight application in SharePoint 2010. SharePoint 2010 introduced the concept of sandboxed solution where the application runs in separate process outside the w3p process where SharePoint is running. Sandboxed solutions having the restriction to make a call to external resources like database and web services. This restriction causing the SharePoint developers to access these resources from sandboxed applications. The solution is ... (more)
category: Architecture | clicked: 8 | comment | | source: www.techbubbles.com
tags: SharePoint 2010
4
Shouts

Recycling Application pools in IIS for SharePoint 2010 | TechBubbles

posted by kalyanms1kalyanms1 662 days, 7 hours, 40 minutes ago
Saturday, August 27, 2011 2:35:41 PM GMT
This post discuss about recycling application pools when memory limits are exceeded. Recycling based on memory limits is not necessary in 64-bit environment. It is suggested that recycling should not be enabled in 64-bit environment. Unnecessary recycling can result in dropping in user requests and performance. Note: When application memory limits are exceeding then change the recycle settings in Internet Information Services(IIS). 1. Make sure that you are a member of Farm Administrators group. 2. O... (more)
category: Architecture | clicked: 24 | 1 comment | | source: www.techbubbles.com
tags: Internet Information Services, SharePoint 2010
2
Shouts

Windows Azure–Security essentials | TechBubbles

published 667 days, 17 hours, 51 minutes ago posted by kalyanms1kalyanms1 668 days, 1 hour, 38 minutes ago
Monday, August 22, 2011 4:24:46 AM GMT Sunday, August 21, 2011 8:37:19 PM GMT
This post discusses about Security essentials which technical decision maker should know in-order to protect customers applications and data in Windows Azure platform. Instead you building the server racks and datacenters, Cloud takes your traditional data centers from you and run on their premises which greatly reduces the cost and maintenance. Cloud runs as services platform follows the SAS(software as service) model. Cloud allows you to buy more compute and storage as you need. Depending on your... (more)
category: Architecture | clicked: 33 | 1 comment | | source: www.techbubbles.com
tags: Windows Azure
2
Shouts

SQL Azure vs SQL Server | TechBubbles

posted by kalyanms1kalyanms1 670 days, 10 minutes ago
Friday, August 19, 2011 10:05:33 PM GMT
This post discusses the differences between SQL Azure and SQL Server in the context of security                                Supports SQL(native) and Windows authentication.Supports SQL(native) only, no windows authentication.Authorization is based on database users and roles. Authorization is based on database users and roles.SQL Server has fixed server roles such as serveradmin, securityadmin and dbcreator.There are no fixed server roles such as in sql server but it has loginmanager and dbmanager ro... (more)
category: Data | clicked: 0 | comment | | source: www.techbubbles.com
tags: SQL Azure
3
Shouts

Heterogeneous Development using Visual Studio 2010 | TechBubbles

published 674 days, 1 hour, 27 minutes ago posted by kalyanms1kalyanms1 675 days, 13 minutes ago
Monday, August 15, 2011 8:48:07 PM GMT Sunday, August 14, 2011 10:02:22 PM GMT
Your organization might have .NET and Java developers working on different platforms to develop the applications. Each development team might have been using different processes to develop the application. With this separation, Organisations have no end-to-end visibility on the development efforts. With Visual Studio 2010 this separation become a thing of past. Visual Studio 2010 ultimate supports Heterogeneous development and helps to manage multiple teams and spans the team to multiple platforms. 1. ... (more)
category: Architecture | clicked: 20 | comment | | source: www.techbubbles.com
tags: Visual Studio 2010
2
Shouts

Creating Code UI Tests in Visual Studio 2010 | TechBubbles

posted by kalyanms1kalyanms1 679 days, 23 hours, 30 minutes ago
Tuesday, August 09, 2011 10:45:52 PM GMT
This post discusses about creating a test case for windows application in both Microsoft Test Manager and using a Code UI Test in Visual Studio 2010. It also discuss about editing a Code UI test by adding assertions into the UI map using UI controller. 1. Before creating test case we will create small windows application notepad. Add few controls to your windows form like menu bar, toolbar , text box , save dialog and status bar Add few lines of code in save button click which saves your c... (more)
category: Architecture | clicked: 7 | comment | | source: www.techbubbles.com
tags: VisaulStudio2010, Testing
2
Shouts

Deploying Windows Azure Application Part2 | TechBubbles

published 682 days, 1 hour, 35 minutes ago posted by kalyanms1kalyanms1 683 days, 1 hour ago
Sunday, August 07, 2011 8:39:59 PM GMT Saturday, August 06, 2011 9:15:38 PM GMT
In my previous post I have discussed about creating the service accounts which required to create to deploy the windows azure application. This post discusses the second step which is deploying the application management portal. Windows Azure tools for visual studio allows you to create and deploy the service package to Windows Azure using Visual Studio. Before deploying the application to the staging environment using management portal, generate the service package using the visual studio 1. Open the ... (more)
category: Architecture | clicked: 13 | comment | | source: www.techbubbles.com
tags: Windows Azure
3
Shouts

Deploying a Windows Azure application Part1 | TechBubbles

posted by kalyanms1kalyanms1 688 days, 17 minutes ago
Monday, August 01, 2011 9:58:34 PM GMT
This post discuss about deploying your web applications or WCF Applications to Windows Azure using the new Management Portal. Before deploying the application to portal , you need to have a subscription with Windows Azure read this post to signup for a Windows Azure account and to purchase a subscription. After having an account with Windows Azure you need to do the below steps to deploy your application to portal Step1 Create the required service components Step2 Upload and configure the application... (more)
category: Architecture | clicked: 12 | comment | | source: www.techbubbles.com
tags: Windows Azure, Windows Azure Deployment
10
Shouts

WCF Services in Windows Azure | TechBubbles

published 686 days, 2 hours, 22 minutes ago posted by kalyanms1kalyanms1 689 days, 11 minutes ago
Wednesday, August 03, 2011 7:53:16 PM GMT Sunday, July 31, 2011 10:04:55 PM GMT
What is Windows Azure? Windows Azure provides developers computation power storage and can scale web applications on internet through Microsoft Datacenters. Developers can use Azure platform to build WCF service application using their existing Visual Studio 2010 expertise. Windows Azure supports the protocols and formats including SOAP, REST and XML. This post discuss about creating a simple WCF Service and hosting it on Windows Azure and consuming in client application. 1. Create a WCF Service Cont... (more)
category: Web Dev | clicked: 19 | comment | | source: www.techbubbles.com
tags: Windows Azure, WCF
4
Shouts

JavaScript Intellisence for SharePoint 2010 Projects | TechBubbles

posted by kalyanms1kalyanms1 695 days, 16 minutes ago
Monday, July 25, 2011 9:59:55 PM GMT
Visual Studio 2010 is really have useful and helpful capabilities from tooling prospective and it allows JavaScript developers to more productive through JavaScript Intellisence and JavaScript debugging. This post discusses about getting the JavaScript Intellisense in SharePoint 2010 projects. 1. Create an empty SharePoint 2010 project as shown below Add a new module to the project and call it as Module1 In solution explorer if you expand the Module file then you will see sample.txt file,... (more)
category: Architecture | clicked: 7 | comment | | source: www.techbubbles.com
tags: SharePoint 2010, Sharepoint