Langage :
Dernières news
Toutes les infos
(45164)
Tout .NET Français
(10078)
Tout .NET Anglais
(34991)
Forum
(Nouveau)
Recevoir chaque jour par mail la liste des news de la veille ! (533 inscrits)
Recherche
Dernières recherches
Archives
09/09/2010
(0)
08/09/2010
(9)
07/09/2010
(8)
06/09/2010
(4)
05/09/2010
(2)
La suite...
septembre 2010
(42)
août 2010
(175)
juillet 2010
(160)
juin 2010
(196)
La suite...
Livres
Section Livres
Rechercher un livre :
Les 5 derniers ajoutés
-
Professional Visual Basic 2010 and .NET 4
-
Stephens' C# programming with Visual Studio 2010
-
C# 2008 for programmers
-
Coffret - C# et TFS 2008
-
Coffret - ASP.NET avec C#
News
Toutes les news
(3801)
.NET en Français
.NET en Anglais
Article
Tous les articles
(5657)
.NET en Français
.NET en Anglais
Codes
Tous les codes
(21979)
.NET en Français
.NET en Anglais
Tips
Tous les Tips
(68)
.NET en Français
.NET en Anglais
Ressources
Toutes les ressources
(13659)
.NET en Français
.NET en Anglais
Les sites présents
DotNet-France.com
(51)
DotNet-FR.org
(409)
Tech Head Brothers
(645)
DotNet-Project.com
(404)
C2i.fr
(1295)
ASP-Magazine.com
(1303)
Blog_Shapai.NET
(42)
ASP.NET Daily Articles
(933)
MSDN France
(114)
DotNetJunkies.com
(50)
MSDN .NET
(1075)
4GuysFromRolla
(281)
ASPAlliance
(1217)
DeveloperFusion
(696)
DotNetJohn
(144)
ASP-PHP.net
(324)
DevTips.NET
(95)
Builder.fr
(8)
Dotnet-Tech
(28)
OpenNETcf
(23)
CodeProject.com
(15338)
GotDotNet.com
(1552)
CodeS-SourceS
(4991)
Code101
(18)
vbAccelerator.com
(5)
123AspX
(6040)
DotNetFreaks
(5105)
DotNetToolBox
(32)
RegExLib.NET
(1123)
SharpToolBox
(999)
kbAlertz
(360)
Infos .NET du
Code101
Mercredi 19 janvier 2005
Catching oracle raised exception in ado.net
[Source : Code101 ]
This article demonstrates how to catch an exception raised by Oracle .NET provider. Oracle...
This article demonstrates how to catch an exception raised by Oracle .NET provider. Oracle database can be accessed using OleDb or ODBC providers but these wouldn?t offer maximum performance. Microsoft released a new provider for Oracle.
Vendredi 17 septembre 2004
Cannot see the graphs created using crystal reports on the .aspx page
[Source : Code101 ]
There some of the common errors we come across when using crystal reports in Asp.net appli...
There some of the common errors we come across when using crystal reports in Asp.net application.Cannot see the graphs created using crystal reports on the .aspx page amd System.NullReferenceException: Object reference not set to an instance of an object (Crystal Reports)
Modifying web.config using web site administration tool (wat) in asp 2.0
[Source : Code101 ]
Modifying the Web.Config is made easy in ASP.NET 2.0 with Website Administration Tool (WAT...
Modifying the Web.Config is made easy in ASP.NET 2.0 with Website Administration Tool (WAT). All you have to do is to deploy your application and ask the Administrators/Support professionals to use WAT and do the necessary modification. You don?t need to teach them any more about XML and your application will never crash for a configuration issue in web.config. Thanks to Microsoft for the WAT!
Mardi 17 août 2004
Unable to build project output group 'content files from
(active)?
[Source : Code101 ]
Unable to build project output group 'Content Files from (Active)? Where is the Name of...
Unable to build project output group 'Content Files from (Active)? Where is the Name of ASP.NET project for which I am trying to create a setup.
Mardi 10 août 2004
Notify the unhandled exceptions to your webmaster by email
[Source : Code101 ]
Web Applications are accessed all over the world and to build a website or a web applicati...
Web Applications are accessed all over the world and to build a website or a web application that works in different machines, browsers and environments is very difficult. Imagine that your webmaster gets to know about the unhandled exceptions that users experience whenever they browse your Web site/Web Application.
Samedi 7 août 2004
How to detect whether the current pc is connected to internet in vb.net windows application?
[Source : Code101 ]
Lets get to it right away.We will try to create an object (?) based on some URI (for examp...
Lets get to it right away.We will try to create an object (?) based on some URI (for example, http://www.citiadsonline.com) and check for the response code by calling that URI.
Working with variables - reference type vs. value types
[Source : Code101 ]
Here is an working example to understand the basic difference between Reference Types and ...
Here is an working example to understand the basic difference between Reference Types and value Types. On this topic, you might have read many articles and tried couple of example code as well. My idea is to present the difference, by using a Web form with options to see the values and reset the values of derived objects
Overriding the tostring() method
[Source : Code101 ]
Here is the complete code listing. In this example, think of an stock price class. This c...
Here is the complete code listing. In this example, think of an stock price class. This class takes 3 arguments in the constructor and will return a formatted (our choice of format) string. Most of us are very familiar with ToString() method. Most of the classes in .NET are having this method by default
Creating links dynamically and responding to the respective click event
[Source : Code101 ]
In a situation where you want to display only few records (out of 2000 records!) and provi...
In a situation where you want to display only few records (out of 2000 records!) and provide navigation links to display the rest (again by restricting to a certain number). This is a very common practice in displaying records in web pages along with the navigation links, numbered properly. This is not only increases the usability from the user's point of view, and also improve the response time.
Write your own simple links search engine using c#
[Source : Code101 ]
Internet is nothing but Links! Everything is linked isn't it. Every page is having Links. ...
Internet is nothing but Links! Everything is linked isn't it. Every page is having Links. In most the web pages links, are more than what your eyes can scan. For our own viewing purpose, let's sort them out in our own format with our own Simple Links Search Engine (web version) written in C#. As I mentioned on the Simple Links Search Engine web page, not all links may work after displaying the results. ...
Posting form data from code behind;not from the .aspx
[Source : Code101 ]
In a situation where you have signed up with other service providers in order incorporate ...
In a situation where you have signed up with other service providers in order incorporate services like, PayPal and any other SMS gateways. The problem here is they accept only FORM submissions from your site (using appropriate pages). The problem with ASP.NET page is, we can have two FORM tags inside a single aspx. The default FORM is always with the attribute runat=server.
Samedi 10 avril 2004
Nesting datalist and checkboxlist in asp.net
[Source : Code101 ]
This article explains how to nest Data List control with the check box list controls, read...
This article explains how to nest Data List control with the check box list controls, reading XML data source, building relation ship between data tables, dynamically passing data to the Check box list, Client-side java script to select the check box list and server side code to capture the selected check boxes.
Mercredi 18 février 2004
Debugging javascript using vs.net and ie 6.0
[Source : Code101 ]
Asp.net has come a long way from Asp on many facets, especially debugging. If you have wor...
Asp.net has come a long way from Asp on many facets, especially debugging. If you have work with ASP.net for a while and go back to work on ASP you would miss a lot of feature and debugging is the most you miss. Visual studio.net is an awesome IDE tool, allows you to step through the your server code, stored procedure and JavaScript too - Did you know this?
Mardi 10 février 2004
Caching in asp.net
[Source : Code101 ]
Caching is a programming technique to keep the data in memory for quick access. Each time ...
Caching is a programming technique to keep the data in memory for quick access. Each time the page is requested querying the database to retrieve the data would be an expensive process, especially if the data is not updated frequently. In this cases using caching has enormous performance gains.
Jeudi 5 février 2004
Export data in tab delimited format
[Source : Code101 ]
Many a time the customers would be interested in the data itself rather than the look and ...
Many a time the customers would be interested in the data itself rather than the look and feel of data. This is very true when there is a need to use the data downloaded as an input for other applications. The lowest and most compatible form of data would be Tab Delimited and the comma separated value format.
Lundi 2 février 2004
Export data to excel using datagrid in asp.net
[Source : Code101 ]
Exporting data to excel is one of the most common functionality of the web applications. ...
Exporting data to excel is one of the most common functionality of the web applications. Users would like to have the data in the excel format for various reasons, to name a few like data verification, further computations and for sharing with others.There are a number of ways to achieve this; in this tutorial we would see how to export the data to excel using the data grid.
Samedi 24 janvier 2004
File upload in asp.net
[Source : Code101 ]
With ASP we all know that uploading a file was quite a task but in ASP.net file upload is ...
With ASP we all know that uploading a file was quite a task but in ASP.net file upload is very simple. This tutorial quickly shows you how to upload a single file
Jeudi 8 janvier 2004
Integrate web interfaces using c#
[Source : Code101 ]
This article proposes a way for integrating the enterprise applications through web interf...
This article proposes a way for integrating the enterprise applications through web interfaces. Since the web interfaces are widely available for many existing applications, the method may well reduce the cost of building an integration system with less time and get ride of the dependency on other resources.
Page 1
Forum
Postes à pourvoir en .n...
Probleme d'affichage bo...
Recherche un geek dispo...
Recherche un geek dispo...
Comment imprimer un cri...
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...
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...
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...
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 1056993846 minutes
Prochaine mise à jour dans -1056993816 minutes
audit et mesure d'audience visiteurs internet par