-
-
7:52
»
ASP.NET Daily Articles
Data bound controls are most popular amongst developers because of their verticality. Controls such as GridView and DataList are popular not just because they provide rich features out of the box but because they allow great deal of customization. To that end templates go a long way in providing a customized look and feel. The concept of templates can be extended to custom controls also. With templates in place you can customize the way your data is presented to the user. This lesson is going to illustrate how this can be done.
-
-
7:52
»
ASP.NET Daily Articles
This is a simple tutorial using Master Pages and a Tree Menu control with Visual Studio 2005. The Tree Menu is dynamically generated, allowing the developer to show a different menu based on the user's role.
-
-
7:52
»
ASP.NET Daily Articles
This article gives an introduction to the ASP.NET AJAX Control Toolkit and a few of the controls.
It also takes a look in depth at the TabContainer control and shows how to use it to load tabs on demand -- lazy loading.
-
-
7:52
»
ASP.NET Daily Articles
Unit Testing allows the developer to create solid applications that will last the changes in the future. There are several articles on GridViewGuy that covers the concepts and benefits of Unit Testing. In this article we are going to go one step further and create Unit Tests for our Membership and Role providers.
-
-
7:52
»
ASP.NET Daily Articles
This article explains in detail how I developed Blogo.NET, a N-tiered blog application based upon the .NET 3.5 Framework.
-
-
7:52
»
ASP.NET Daily Articles
ASP.NET validation controls provide an easy-to-use but powerful mechanism of ensuring that data is entered correctly on the forms. There are 6 validation controls included in the ASP.NET 2.0 and ASP.NET 3.5 versions. In this article, let us see some tips and tricks that can be applied to the validation controls.
-
-
7:52
»
ASP.NET Daily Articles
You cannot call server-side code ‘directly’ from client-side code. However, there are some workarounds. To call server-side code from Javascript, you will need to use AJAX, and the easiest way out is to use the ASP.NET AJAX Extensions. In this article, we will be using PageMethods to call server-side functions using Javascript.
-
-
7:52
»
ASP.NET Daily Articles
We will use basic Javascript and .NET to create a feature to allow auto suggests as a user types.
-
-
7:52
»
ASP.NET Daily Articles
Developing a nice custom control is just one part of the story. You can enhance the experience of other developers using your control by providing proper designer support. A set of attributes often called as Design Time Attributes allow you to accomplish this.
-
-
7:52
»
ASP.NET Daily Articles
Where LINQ to SQL shines as compared to other ORM tools in the market is the fact that it abstracts away the database structure behind our business objects, it also supports a query language called LINQ. The article talks about LINQ to SQL execution plans and how it manages its object state.
-
-
7:52
»
ASP.NET Daily Articles
RSS and ATOM feeds dominate the syndication systems today. If you run a web site you probably use RSS and ATOM for two purposes:
1) Expose your site content for syndication using these formats
2) Consume content exposed by other web sites and aggregate it on your web site
Whatever be the case until recently developers either coded their custom solution or made use of some third party component. Luckily .NET framework 3.5 introduced a set of classes that can simplify your job. This article explains how.
-
-
7:52
»
ASP.NET Daily Articles
In this first part of the three part series, Bilal Haidar introduces Client Application Services (CLAS) that shipped with Visual Studio 2008 and .NET 3.5. These services allow Windows Forms and Windows Presentation Foundation applications to access ASP.NET 2.0 AJAX 1.0 Extensions Application Services. He begins with a brief introduction followed by a detailed discussion of ASP.NET 2.0, AJAX Extensions 1.0, and Client Application Services. He concludes the article by providing a list of classes used for CLAS.
-
-
7:52
»
ASP.NET Daily Articles
Web User control written in C# using VS2005 to allow file upload, delete, and view option. Easy property settings, makes it easier for developers to use.
-
-
7:52
»
ASP.NET Daily Articles
In this article Simone will cover one of the main reasons for adopting the ASP.NET MVC framework: testability.
-
-
7:52
»
ASP.NET Daily Articles
Learn how to create Control Extenders using Visual Studio 2008, ASP.NET 3.5, and AJAX.
-
-
7:52
»
ASP.NET Daily Articles
Using C# and Javascript to show gridview rows with expanded and collapse features. Allows parent/child view while providing easy navigation of child details using client side script.
-
-
7:52
»
ASP.NET Daily Articles
In the previous article we discussed type converters. Type converters come handy when you want to accept property values in plain text form. However, at times you may not want to allow the user to enter text values directly. You may want to present a custom value picker in the form of a dropdown control or a dialog box. This is possible with the help of Type Editors and this article examines them with an example.
-
-
7:52
»
ASP.NET Daily Articles
Is the new MVC pattern right for you?
ASP.NET MVC Preview 2 provides Model-View-Controller routing and testing improvements as well as the first Visual Studio 2008 template support for MVC development in the IDE and Dynamic Data enhancements.
-
-
7:52
»
ASP.NET Daily Articles
In this tutorial we'll analyze Microsoft Virtual Earth, the new SQL Server 2008 GEOGRAPHY data type and ASP.NET AJAX. We'll build a database of longitude and latitude records for specific locations, we'll then use ASP.NET AJAX and Virtual Earth to exploit these locations.
-
-
7:52
»
ASP.NET Daily Articles
This article demonstrates AJAX best practices based on ASP.NET AJAX.
-
-
7:52
»
ASP.NET Daily Articles
This article presents a technique for sorting a GridView populated from a list of custom data objects. It relies on the ViewState and does not require additional calls to the database.
-
-
7:52
»
ASP.NET Daily Articles
The article discusses ten tips and tricks that you can use while using the GridView control.