Langage :
Dernières news
Toutes les infos
(43640)
Tout .NET Français
(9731)
Tout .NET Anglais
(33814)
Forum
(Nouveau)
Recevoir chaque jour par mail la liste des news de la veille ! (531 inscrits)
Recherche
Dernières recherches
Archives
09/02/2010
(0)
08/02/2010
(9)
07/02/2010
(3)
06/02/2010
(14)
05/02/2010
(8)
La suite...
février 2010
(81)
janvier 2010
(307)
décembre 2009
(261)
novembre 2009
(337)
La suite...
Livres
Section Livres
Rechercher un livre :
Les 5 derniers ajoutés
-
C# et TFS 2008
-
Coffret - ASP.NET avec C#
-
.NET - Les fondamentaux
-
Coffret - PHP 5.2 et Zend Framework
-
Coffret C# 2008 et Crystal Reports 2008
News
Toutes les news
(3689)
.NET en Français
.NET en Anglais
Article
Tous les articles
(5554)
.NET en Français
.NET en Anglais
Codes
Tous les codes
(20808)
.NET en Français
.NET en Anglais
Tips
Tous les Tips
(68)
.NET en Français
.NET en Anglais
Ressources
Toutes les ressources
(13521)
.NET en Français
.NET en Anglais
Les sites présents
DotNet-France.com
(51)
DotNet-FR.org
(409)
Tech Head Brothers
(619)
DotNet-Project.com
(404)
C2i.fr
(1204)
ASP-Magazine.com
(1303)
Blog_Shapai.NET
(42)
ASP.NET Daily Articles
(933)
MSDN France
(114)
DotNetJunkies.com
(50)
MSDN .NET
(1020)
4GuysFromRolla
(281)
ASPAlliance
(1175)
DeveloperFusion
(696)
DotNetJohn
(144)
ASP-PHP.net
(323)
DevTips.NET
(95)
Builder.fr
(8)
Dotnet-Tech
(28)
OpenNETcf
(23)
CodeProject.com
(14396)
GotDotNet.com
(1552)
CodeS-SourceS
(4762)
Code101
(18)
vbAccelerator.com
(5)
123AspX
(6021)
DotNetFreaks
(5016)
DotNetToolBox
(32)
RegExLib.NET
(1123)
SharpToolBox
(969)
kbAlertz
(360)
Les dernières actus .NET
Lundi 8 février 2010
Design patterns part 2 - the factory pattern
[Source : CodeProject.com ]
The second part in WebBiscuit's design pattern series, this one examining the factory patt...
The second part in WebBiscuit's design pattern series, this one examining the factory pattern. We look at an example of coping with ever-changing requirements by programming to interfaces and allowing the factory pattern to decide on the implementation.
Wordnet-based semantic similarity measurement
[Source : CodeProject.com ]
Capturing the semantic similarity between two short sentences based on the WordNet diction...
Capturing the semantic similarity between two short sentences based on the WordNet dictionary.
Load any object from most any database
[Source : CodeProject.com ]
Building An ORM Step 1...
Building An ORM Step 1
Forward/backward code navigation with the mouse thumb buttons inside visual studio 2010 (c++, visual basic, f#)
[Source : CodeProject.com ]
Addin to navigate in your code using the thumb buttons of your mouse....
Addin to navigate in your code using the thumb buttons of your mouse.
Learn how to use the createuserwizard control in a
[Source : DotNetFreaks ]
In this tutorial we will add a user account to the database using ASP.NET framework throug...
In this tutorial we will add a user account to the database using ASP.NET framework through the CreateUserWizard control. This allows users to add their own information to the user database and force them to sign up for accounts.
Mutuallyexclusive checkboxes in asp.net ajax c#
[Source : DotNetFreaks ]
In this tutorial we will demonstrate how to enable the developer to configure checkboxes t...
In this tutorial we will demonstrate how to enable the developer to configure checkboxes that are mutually exclusive; which ensures that the end-user will only be able to select a single option. This control is similar in behavior to the radio-button list control. This control is perfect for accepting only a specific confirmation from a customer, such as yes/no to a newsletter or promotional email list.
Asp.net ajax error handling
[Source : DotNetFreaks ]
Ajax Error Handling with ASP.net stack traceASP.Net Ajax is great for developing web appli...
Ajax Error Handling with ASP.net stack traceASP.Net Ajax is great for developing web applications. However there are some issues in presenting server side exceptions in the browser nicely. I actually needed the entire stack trace to be shown in the screen. Whenever I had an error while using Ajax, I used to get an alert with error message. Sometimes eve
Asp.net hierarchical gridview
[Source : DotNetFreaks ]
Hierarchical GridView Using TemplateFieldI usually choose a TreeView for this kind of hier...
Hierarchical GridView Using TemplateFieldI usually choose a TreeView for this kind of hierarchical data or I choose ASP.Net menu. But there are some situations you may need to have various controls on each node. If this is your case then the Asp.Net Hierarchical GridView is right choice. But wait one moment, there is no Hierarchical Grid as we have i
Restful proxy-less wcf clients for .net, .net compact framework and silverlight
[Source : CodeProject.com ]
Sample WCF clients for three different platforms with no code duplication and no generated...
Sample WCF clients for three different platforms with no code duplication and no generated proxies
Dimanche 7 février 2010
Multithreading, delegates, and custom events
[Source : CodeProject.com ]
Tie it all togeths and not lose your mind in the process...
Tie it all togeths and not lose your mind in the process
Datalink simulator
[Source : CodeProject.com ]
a C# simulation for DataLink layer using OpenGl...
a C# simulation for DataLink layer using OpenGl
How to change connectionstring easily
[Source : CodeProject.com ]
Changing ConnectionString like an attribute in C#...
Changing ConnectionString like an attribute in C#
Samedi 6 février 2010
Rapidwebdev - a new enterprise software development infrastructure in .net
[Source : CodeProject.com ]
RapidWebDev is an infrastructure helps engineers to develop enterprise software solutions ...
RapidWebDev is an infrastructure helps engineers to develop enterprise software solutions in Microsoft .NET easily and productively. It consists of an extendable and maintainable web system architecture with a suite of generic business model, APIs and services as fundamental functionalities needed i
Securing my website using ssl in local iis (5.1 and above)?
[Source : CodeProject.com ]
Easily, SSL can be implemented in your local IIS for learning and testing purposes'...
Easily, SSL can be implemented in your local IIS for learning and testing purposes'
Asp.net ajax gridview filter
[Source : DotNetFreaks ]
Filter rows in Asp.Net Ajax GridView When working in a large amount of data, filtering to ...
Filter rows in Asp.Net Ajax GridView When working in a large amount of data, filtering to get a subset is always essential. So I have written this code. Here I refer filter as filtering records at the application level not at the database level. Usually I put the data in the Viewstate or in session if the data is not too huge. Then apply the filter to g
Asp.net ajax checkboxlist
[Source : DotNetFreaks ]
ASP.Net Ajax CheckBoxList with data binding I usually choose ASP.Net GridView for a column...
ASP.Net Ajax CheckBoxList with data binding I usually choose ASP.Net GridView for a column with Checkbox, but I had a requirement few weeks before to use a single column based checkbox list. So I just browsed through the available controls in the toolbox, I just had a thought of trying this control. Actually the controls is very simple and highly user f
Asp.net listview itemdatabound
[Source : DotNetFreaks ]
GridView inside a ListView ListView is a very flexible control for rendering custom format...
GridView inside a ListView ListView is a very flexible control for rendering custom formatted outputs. I have already managed it to get a horizontal menu with liquid layout. Its fantastic set of templates allows most of the rendering to be easily done. With a little bit of CSS knowledge we can avoid rendering tables for most of the lists. It is not only
Gridview rowcommand for custom tasks
[Source : DotNetFreaks ]
GridView RowCommand Unlike edit, delete, and Add there might be several functionalities we...
GridView RowCommand Unlike edit, delete, and Add there might be several functionalities we may need to perform on GridView or a specific GridView row. For custom tasks, don?t use the native command names as edit, update, cancel as GridView uses natively.Accessing the RowWhenever there is a need of custom task for a specific row, we need that specific ro
Wpf listview with gridviewcolumn
[Source : DotNetFreaks ]
DataBind WPF ListViewBinding Dataset or DataTable directly to WPF data controls are not as...
DataBind WPF ListViewBinding Dataset or DataTable directly to WPF data controls are not as easy as binding WinForms or Asp.Net controls. Still few things are so specific to WPF when binding data. So understanding basics of data binding (atleast basic controls) is necessary before building large applications in WPF.DataContext as DataSource in <SPAN id=c
Linq and entities for binding gridview
[Source : DotNetFreaks ]
DataBind GridView with Entities and LINQA simple article for understanding LINQ with Entit...
DataBind GridView with Entities and LINQA simple article for understanding LINQ with Entities for data binding a GridView. While the main objective is not about the GridView data binding, the goal is to find how we can use the LINQ effectively along with Entities to bind data. Why I have not decided not to use DataTable with LINQ to bind is, because I w
Asp .net fileupload and image handler
[Source : DotNetFreaks ]
Asp .Net FileUpload to save image to the DataBaseI have worked in GridView for displaying ...
Asp .Net FileUpload to save image to the DataBaseI have worked in GridView for displaying different kind of data. The interesting portion is when there is a possibility to attach image, photo. This is not a very big task. But if it is done properly, the result will be very useful to the end user. For this article I would like to extend bit further to ad
Wpf treeview binding with relational dataset
[Source : DotNetFreaks ]
WPF Treeview DataBinding with DatasetI am always fan of TreeView from classic VB days. It ...
WPF Treeview DataBinding with DatasetI am always fan of TreeView from classic VB days. It is a great control to display hierarchically organized data. But earlier days in VB 6 the TreeView has to be populated by adding nodes through looping. Then in the ASP.Net I had some how improved support by using XML to transform the Dataset to TreeView binding.Hie
C# ccitt-8 crc algorithm
[Source : CodeProject.com ]
An article on a C# Cyclic Redundancy Check (CRC) algorithm...
An article on a C# Cyclic Redundancy Check (CRC) algorithm
Mp3 sound recording tool
[Source : CodeProject.com ]
A small single dialog utility for recording from the sound card in mp3 format...
A small single dialog utility for recording from the sound card in mp3 format
Asp .net mvc 2 (release candidate 2)
[Source : C2i.fr ]
Phil Haack (leader de ASP .NET MVC) et Scott Guthrie l'annoncent aujourd'hui : la Release ...
Phil Haack (leader de ASP .NET MVC) et Scott Guthrie l'annoncent aujourd'hui : la Release Candidate 2 de ASP .NET MVC est dispo. Au menu surtout le modèle de validation ...
La nouvelle version de reflector v6
[Source : C2i.fr ]
C'est Patrick Smacchia qui l'annonce sur son blog ce matin : la v6 de Reflector sera dispo...
C'est Patrick Smacchia qui l'annonce sur son blog ce matin : la v6 de Reflector sera dispo le 15 de ce mois. Pour mémoire, ce produit sera payant et complètement intégré &...
Vendredi 5 février 2010
Join a live webcast on detecting and mitigating security issues using the cat.net tool
[Source : MSDN .NET ]
In this live Security Talk webcast, discover how CAT.NET includes a set of FxCop security ...
In this live Security Talk webcast, discover how CAT.NET includes a set of FxCop security rules that help you identify security flaws in a managed-code (C#, Visual Basic .NET, Visual J#) application you are developing.
$50,000 phizzpop design challenge
[Source : MSDN .NET ]
Web design agencies and partners called to submit a redesign strategy incorporating Micros...
Web design agencies and partners called to submit a redesign strategy incorporating Microsoft Web Technologies for bgca.org, the Web site for Boys & Girls Clubs of America. Deadline for entries is February 19, 2010.
Inserer tout type de fichiers dans oracle en vb.net
[Source : CodeS-SourceS ]
Ce petit code permet d'ajouter tout type de fichiers dans oracle et par la suite de les r&...
Ce petit code permet d'ajouter tout type de fichiers dans oracle et par la suite de les récupérer, les enregistrer et les ouvrir à partir de votre dis
Xna snooker club
[Source : CodeProject.com ]
WCF-enabled multi player XNA game for Windows platform...
WCF-enabled multi player XNA game for Windows platform
Installation overview of sql server 2008
[Source : DotNetFreaks ]
In this tutorial we will discuss an overview of SQL Server servicing installation. It is p...
In this tutorial we will discuss an overview of SQL Server servicing installation. It is possible to upgrade any installed SQL Server 2008 component with a SQL Server 2008 servicing update. In this case, if the version of the component is later than the version update available then the Setup program will not update it.
Coding staff online store
[Source : DotNetFreaks ]
An online marketplace to purchase custom DNN modules and high-quality skins. The store is ...
An online marketplace to purchase custom DNN modules and high-quality skins. The store is easy to navigate. Coding Staff provides support for all the store products.
Ui controlsuite .net
[Source : DotNetFreaks ]
UI ControlSuite .NET now contains the world's first VirtualizingWrapPanel for Silverlight...
UI ControlSuite .NET now contains the world's first VirtualizingWrapPanel for Silverlight 3 .NET and two new WPF .NET controls, the world's first TreeListView and Virtualizing WrapPanel controls for WPF .NET framework
Kentico social networking platform for asp.net
[Source : DotNetFreaks ]
A complete CMS and social networking platform for rapid development of Web 2.0 sites with ...
A complete CMS and social networking platform for rapid development of Web 2.0 sites with forums, blogs, wiki, groups, friends, widgets, message boards, private messaging, user profiles, media galleries and other features.
Jeudi 4 février 2010
Speedbooster
[Source : CodeS-SourceS ]
- Transforme le disque dur en mémoire vive - accélére la bande passante -...
- Transforme le disque dur en mémoire vive - accélére la bande passante - décuple la vitesse de votre pc
Applied long-running active object pattern
[Source : CodeProject.com ]
How to use Active Object pattern to carry out a long-running tasks...
How to use Active Object pattern to carry out a long-running tasks
Thread-safe enumeration in c#
[Source : CodeProject.com ]
A way to have thread-safe foreach statements without explicit locking....
A way to have thread-safe foreach statements without explicit locking.
Save log information in database with log4net and nhibernate
[Source : CodeProject.com ]
Using log4net to save data in database with help of NHibernate...
Using log4net to save data in database with help of NHibernate
Techdays 2010 : suivez les keynotes en live !
[Source : C2i.fr ]
Bonne nouvelle pour les non parisiens : vous pourrez suivre en live les keynotes des TechD...
Bonne nouvelle pour les non parisiens : vous pourrez suivre en live les keynotes des TechDays 2010. Le lien est ici. NB : si vous êtes parisien, vous pourrez me retrouvez lors de la session qu...
Windows 7 new features step by step in vb.net and c#
[Source : CodeProject.com ]
Explaining all the new must have features in windows 7 to make your application look shin...
Explaining all the new must have features in windows 7 to make your application look shiny and professional like the new features of the task bar and more
Page 1
Page 2
Page 3
Page 4
Page 5
Page 6
Page 7
Page 8
Page 9
Page 10
Page 11
Page 12
Page 13
Page 14
Page 15
Page 16
Page 17
Page 18
Page 19
Page 20
Page 21
Page 22
Page 23
Forum
Aide crystal report vs ...
Besoin de renseignement...
Probleme de chargement ...
Vb.net(2008)...
Export pdf depuis cryst...
Comment afficher un cha...
Montreal vfx...
Import de donnees de da...
Debuger une dll c++ en ...
Vérification intégrité ...
Urgent, cdi chez editeu...
Urgent, cdi chez editte...
ajouter des users...
Visual studio 2003 : vb...
Les fichiers .ini...
[resolu] impossible de ...
[emploi] ingénieur(e) d...
Message d'erreur...
Vous avez envie de lanc...
Drag and drop...
.net cf datagrid, chang...
Gestion de la persistan...
Offre d'emploi : develo...
Parcourir le disque dur...
C# dll...
Outils de contrôle de s...
Erreur oracle, message ...
Problème de combinatoir...
Sharpwidgetsui, bibliot...
[aspx] [c#] chercher et...
Web.sitemap...
Nous activement recherc...
Chef de projet développ...
Pour les architectes c+...
Pour les architectes c+...
Vous êtes développeurs ...
Pour les architectes c+...
Vous êtes ingénieur en ...
Chat web en asp.net...
Opportunite professionn...
Comment coder un tablea...
Autogeneratepassword et...
forum de discussion en...
Transparence de backgro...
C# communication entre ...
Service windows - arrêt...
Surveillance d'une base...
Expression blend /wpf c...
Demande d'aide pour le ...
Stp ne negligez pas ce ...
redirection vers url e...
Instance d'objet...
Afficher les détails d'...
Agrandir une image et l...
Supprimer en asp.net...
Un problème avec linq...
Image sous sql et dotne...
Plus d'un tp et cours e...
Web garden iis 6.0...
Technoriver barcode .ne...
Configuration serveur s...
Réécrire le code html d...
Couldn'nt resolve syste...
Datagread...
Inserer dans la base de...
Update database...
Plugin subversion pour ...
Acceder aux donnees...
Probleme répertoire vir...
Clementine intl: recher...
Clementine intl: recher...
Excellente opportunité:...
Recherche un développeu...
Fichier introuvable ser...
Pb remplissage listview...
Problème de connexion d...
Architecture n-tier, dé...
Scan ip des pc connecté...
Créer session sous asp....
Ma première migration v...
A propos d'oracle devel...
Application web en vs 2...
Votre aiiiiiiiiiiiiiiii...
Résultat d'une requete ...
Où sont ils...
Checkbox checked proble...
Resolution d'ecran avec...
Dll avec csharp...
Aide à l'inscription...
Transferer des mails da...
Dataset dans visual stu...
Aide sur flash...
Look and feel des winfo...
Difficulté avec projet ...
Je viens d'avoir le vs....
Gridview | modification...
Page aspx pas affichée ...
Treeview...
Toolbox...
Dnn et les friendlyurl...
Barcode .net control fr...
Attacher une librairie ...
Directoryentry setpassw...
Avantage dotnet & java...
Recherche de sources ty...
Barre de navigation cry...
Gestion d'erreur...
[vb.net]fermeture d'un...
Nouvel outil de generat...
Dotnet.dll...
Probleme avec les msgbo...
Projet...
Simulation de tri shell...
Pour ceux qui sont inte...
Gestion des fichiers xm...
Vs 2005 et win fx ?...
Offre consultant .net...
Vb visual studio 2005 f...
Pocket pc : détection d...
Bdd access...
Sql server management ...
Récupérer le handle d'u...
(dotnet) réception de d...
Déployement de service ...
Connexion à une base de...
Ado et pocket access...
Echec de connexion a ba...
[c++.net] mot de passe...
Informatique simulation...
Informatique simulation...
Variables avec apostrop...
Comment compiler avec i...
Impossible d'utiliser u...
Créer une base access e...
Aide accédant à http://...
Enregistrement richtext...
Compatibilte entre une ...
Format des fichiers dxf...
Publication de 2 projet...
Probleme avec datagrid...
Applet...
Indicateur code natif o...
Dll commune pour win32 ...
Dll en c++ managé sur p...
Générer un .lib avec un...
Communication série sou...
Iframe et menu déroulan...
Nouvelle version de la ...
Dotnet-project framewor...
Printpreviewdialog...
Nouvelle version de la ...
Mono ? arrivera-t-il à ...
A propos des rubriques...
Uml...
Nouvelle version de la ...
Comment avez-vous décou...
Positionnement du curse...
Bienvenue sur le forum...
[Participer au forum]
Publicité
Dernières Offres d'emploi
[La suite des offres]
Dernière mise à jour il y a 23 minutes
Prochaine mise à jour dans 6 minutes
audit et mesure d'audience visiteurs internet par