Ajax Control Toolkit November 2011 Release
Categories: ASP.NET Tags: AJAX, Ajax Control Toolkit, Download
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 . Well , It has the similar concept and the UI as the Click Once Deployment in .NET ) ClickOnce deployment makes things easier for installing the Application for all Read More....Categories: .NET, ASP.NET, C#, Others, Visual Studio 2010, Windows Application Tags: .NET, Click Once, Developers, dotnet, google, installation, Kindle, Plugin
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 .
Categories: .NET, ASP.NET, Visual Studio 2010 Tags: .NET 4.0, ASP.NET 3.5, IDE, IIS, Joel Varty, microsoft, Visual Studio 2010
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 . This covers some of the intro. topics like New features in Visual Studio 2010 New features in C# 4 and Visual Basic 10 Intr Read More....Categories: .NET, ASP.NET, ASP.NET MVC, C#, F#, Visual Studio 2010, Windows Application Tags: .NET Framework 4, ASP.NET MVC, C# 4, demos, hands-on labs, June 2010 Release, Microsoft Download Center, presentations, Training Kit, Visual Basic 10, Visual Studio 2010, Visual Studio 2010 and .NET Framework 4 Training Kit, Web Forms4, Windows Communication Foundation
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; public int ID { get { return id; } set { id=value; } } }
Categories: .NET, ASP.NET, Compact Framework / Windows Mobile, Visual Studio 2010 Tags: Auto Implemented property, bunch, explicitly, get, getter or setter, implicitly, private, prop, properties, public, set, snippets, Student.C# 3.0, syntax, VB 10.0
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 server controls by adding client side functionality.
Categories: .NET, ASP.NET Tags: ASP.NET, ASP.NET server controls, AutoComplete, extender, senthil, TextBox, Visual Studio, Web Service
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.
Categories: .NET, ASP.NET, ASP.NET MVC Tags: ASP.NET, c#, how to get user's IP Address using ASP.NET, HttpContext, HTTP_X_FORWARDED_FOR, ip address, REMOTE_ADDR, senthil, ServerVariables, UserHostAddress, VB.NET
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 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 is available with the panel or with each page.
Adding rows and columns to DataGrid Dynamically
Well , it took me sometime to understand how to add rows and columns to the datagrid dynamically.Infact its very simple provided u remember to few syntax of DataColumn and DataRow. Here are the steps.
