What ist the UpdatePanel in ASP.NET Ajax? The answer is easy: When adding an UpdatePanel-control to your page, you can achieve a partial-update of your page on a postback. Only the content in the UpdatePanel is refreshed, the other parts of the page remain unchanged. This topic explains, how you can setup an Ajax-enabled project and use the UpdatePanel control.
This is the first tutorial of a series of LINQ-tutorials. It provides an introduction on how to build an ASP.NET-Website with a LINQ-based data-access using VS 2008.
In this article I would like to show, how DataBinding in WPF can be used. Thereby a list of Person-objects is displayed by using DataTemplates and Styles in a WPF-Window. By studying this example one can understand, how the separation of representation and data/logic can be realized with WPF.
Silverlight is a new Microsoft technology to implement rich internet-applications. It can be embedded in any browser as plugin and is platform-independent. This article shows, how to integrate a Silverlight-project into an ASP.NET-Website.
This article shows 2 common tasks with the ASP.NET GridView: Binding a List (generic) of objects as DataSource and on clicking a row, getting the values of the selected row by a javascript function. In the example a List with User-objects is displayed. On clicking a row containing the data of a User-object, the Id of the object is used to get the address of the user by an Ajax-call and display it in a details-field.
This article is about using the OR-Mapper NHibernate which is mapping a data representation from an object model to a relational data model in a .NET-environment. The article contains the main steps to get started with NHibernate by a short example-project. It is the first part of a planned series of NHibernate-tutorials.
This article describes how to implement a web-chat with ASP.NET and Ajax. In the first part I introduce the technologies I used for the application. Then I explain the concept of a chat and in the last part I present the main implementations.The goal of this article is to show the interested reader how to develop a chat without browser-plugins or java-applets, just pure HTML and javascript.
This article describes how to build a WebService with .NET and use Generics in this WebService to transfer a list of complex datatypes. A WebService can be used in a WinForms-client and in a Web-client as well. In our example a list of Person-objects is bound to a GridView in an ASP.NET-project and to a DataGridView in a WinForms-project. The goal of this article is to demonstrate, how you can use a WebService with two different type of views: WinForm and WebForm.
There are different possibilities to navigate to a Url after a click on an asp:LinkButton which all have certain advantages for special use-cases. This article explaines these solutions.
In the last tutorial I showed how to use an UpdatePanel for partial-page-update. The control that was triggering the update of the UpdatePanel has been dropped into the Panel, where it is registered as trigger automatically. Now I want to explain, how you can trigger a refresh by a control that lives outside of the UpdatePanel.