Menu

ASP.NET

Merge 2 DataTables in C# and ASP.NET

The Merge() method of the datatable is used to Merge a datatable (second datatable) and stores the result to the first datatable. For example , assume the following datatables are present EmployeeDataTable1 and EmployeeDataTable2 . If you want to merge the data from EmployeeDataTable2 to EmployeeDataTable1 , you could do something like Read More →

TypeScript for Visual Studio 2012

Yesterday , Somasegar , in his blog announced the new open source project called TypeScript Preview which is available for download from Microsoft Download Center. TypeScript adds optional types, classes, and modules to JavaScript allowing the developer to make better tooling for large scaled JavaScript apps. TypeScript comes Read More →

AJAX Control Toolkit – September 2012 Release

The September 2012 release of the Ajax Control Toolkit is released and is available for download from codeplex. The AJAX Control Toolkit Release Notes - September 2012 Release includes the support for the .NET Framework 4.5 as well as the support for ASP.NET 3.5 and ASP.NET 4.0. Download the AJAX Control Toolkit Read More →

Cassini Webserver vs. IIS Express

Sometime back I had the opportunity to explore the possibility of using Webservers other than IIS (Internet Information Services) for an ASP.NET based website. It was at this time I came across the other possible web servers like IISExpress and Cassini. Both were quite new to me when I started reading about Read More →

SyncFusion’s Metro Studio 1 with 600 Metro style Icons

Metro Studio 1 allows you to create Icons for Metro apps (Windows Phone, and Windows 8).

These icons can be used across all the .NET applications like ASP.NET, ASP.NET MVC, Silverlight, WPF etc.

Syncfusion Metro Studio has a collection of nearly 600 Metro-style icons.

Icons here come as vector based and enable you Read More →

Ajax Control Toolkit November 2011 Release

Stephen Walther , in his blog announces the release of the Ajax Control Toolkit November 2011 release which is now available as download and NuGet Package . The Ajax Control Toolkit November 2011 Release can be downloaded from the CodePlex site The Current release of the Read More →

Dotnet Developers – Did u notice the Google talk Plugin installer ???

Well , it we only recently that i noticed how the installation of google talk plugin inside the Gmail works . Well , the installation had some interesting information for .NET Developers . Just check the Installation screenshots that i took below . Read More →

Fix for Visual Studio 2010 – Hangs when debugging ASP.Net 3.5 Web application

Joel Varty , in his blog highlights fix for the users of Visual Studio 2010 who have problems with the IDE that hangs when debugging ASP.NET 3.5 applications. The Bug information can be found in the Microsoft's Connect site . The Description of the Bug from the site posted by Read More →

Themes for the Visual Studio 2010 IDE

I was searching for an Visual Studio extension which can theme the Visual Studio 2010 IDE , and found this nice extension "Visual Studio Color Theme Editor" created by Matthew Johnson . This Exension allows the developers to customize Visual Studio 2010 color palette used Read More →

Visual Studio 2010 and .NET Framework 4 Training Kit – June 2010 Release

The Visual Studio 2010 and .NET Framework 4 Training Kit includes presentations, hands-on labs, and demos that introduces or helps one to learn about Visual Studio 2010 features . The June 2010 Release of the Visual Studio 2010 and .NET Framework 4 Training Kit is now available for download from Microsoft Read More →

Auto Implemented Properties in .NET

If we want to create a class with a bunch of public properties , we generally do it by storing the value of the properties in private field. Eg :
Class Student

{

           private int id;
       Read More →           

Autocomplete Extender Control in ASP.NET

AutoComplete is an ASP.NET AJAX extender that can be attached to any TextBox control, and will associate that control with a popup panel to display words that begin with the prefix typed into the textbox. Extenders are server controls that allow to extend a set of ASP.NET Read More →

Retreive User’s IP Address in ASP.NET

There may be a requirement of getting the user's IP address using ASP.NET and C# or VB .NET when a user logs in to the webpage. This can be achieved easily with the .NET Framework. The IP Address can be retreived in the following ways.
String str = Read More →           

Adding Controls during Runtime ( Dynamically ) in ASP.NET

Well i have been wandering around here and ther for quite a few days in understanding how to dynamically create the controls in ASP.NET during the runtime in VS 2008. All it ended out to be a very simple one. This is achieved through the methods Controls.add that Read More →

Adding rows and columns to DataGrid Dynamically

Well , it took me sometime to understand how to add rows and columns to the datagrid dynamically using C# and ASP.NET .Infact its very simple provided u remember to few syntax of DataColumn and DataRow. Here are the steps. 1. Create a DataTable Object which we will Read More →
Back to top

© 2011-2013 Senthil Kumar's Blog This is my personal blog .The opinions expressed here represent my own and not those of my employer . All Rights Reserved -- Copyright notice by Blog Copyright