IReflectable

Object oriented development thoughts.

jeudi, octobre 14, 2004

VS.NET Shortcut list

Site Wiki décrivant les appels de méthods PInvoke en .net

pinvoke.net: the interop wiki!

Site Wiki décrivant les appels de méthods PInvoke en .net Pratique !

lundi, octobre 11, 2004

Microsoft Belgi� & Luxemburg - MSDN - Using custom collections with the ASP.NET DataGrid control

The Code Project - Role-based Security with Forms Authentication - ASP.NET

Creating Virtuals and reading Installed Sites on IIS with .Net - Rick Strahl's WebLog

319991 - FIX: ASP.NET Does Not Copy Files from Bin Directory to Temporary ASP.NET Files Folder

samedi, octobre 09, 2004

Checklist: ASP.NET Performance

vendredi, octobre 08, 2004

ASCX Control Parser

jeudi, octobre 07, 2004

Image Web Control ImageUrl Problem

Scott on Writing a une solution mais qui ne semble pas fonctionner, à moins que cela ne soit moi ?

mercredi, octobre 06, 2004

Sorting XML Data using the .NET DataGrid

lundi, octobre 04, 2004

Une librarie de UserControl ? Sans code ou presque, c'est aussi possible !

How to Set the Focus on a particular Control in a Form

Il faut register le bloc de code JavaSCript suivant (entouré par un bloc "script" non inclus ici car Blogger ne le supporte pas) :

Pour la TextBox TextBox1 :

document.forms[0].TextBox1.focus ();

Wintellect - Know How - Resources - Faqs

Wintellect - Know How - Resources - Faqs: "The ASPX file below demonstrates the proper technique. It populates a DataGrid with content from the Titles table of the Pubs database that comes with Microsoft SQL Server. The DataGrid's leftmost column contains a row of Delete buttons. The OnDeleteRecord method simulates a record deletion by writing the Title field of the record to be deleted to a Label control. The OnAttachScript method, which is called once for each row in the DataGrid in response to ItemCreated events, attaches to each button an OnClick attribute that activates a bit of client-side JavaScript. That script displays a confirmation dialog and prevents the page from posting back to the server (thus preventing OnDeleteRecord from being called) if the user clicks Cancel rather than OK.


<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>




AutoGenerateColumns="false" CellPadding="2"
BorderWidth="1" BorderColor="lightgray"
Font-Name="Verdana" Font-Size="8pt"
GridLines="vertical" Width="90%"
OnItemCreated="OnAttachScript"
OnItemCommand="OnDeleteRecord"
RunAt="server">

HeaderStyle-HorizontalAlign="center"
ItemStyle-HorizontalAlign="center"
ButtonType="PushButton"
CommandName="Delete" />
DataField="title_id" />
DataField="title" />
DataField="price" DataFormatString="{0:c}"
HeaderStyle-HorizontalAlign="center"
ItemStyle-HorizontalAlign="right" />

Font-Bold="true" />

ForeColor="darkblue" />








]]>

deus ex machina

Wintellect Faqs - Une bonne source d'infos

Making sense of ASP.Net Paths

samedi, octobre 02, 2004

Design Patterns

Encore et toujours une bonne lecture avec des samples en C#.

Using XmlSerializer to Serialize object graphs

Cet article montre l'usage des différents attributs du namespace System.Xml.Serialization.