Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Articles
Book Excerpt: Expert One-on-One Visual Basic 2005 Design and Development   29 Mar 2007 19:00 GMT
This book covers the process of .NET application design and development from conception to deployment. Unlike many .NET books, this one uses VB.NET code for the examples, and even includes specific techniques such as this "Splash Screen" sample chapter.
Source: DevX
Book Excerpt: Expert One-on-One Visual Basic 2005 Design and Development   29 Mar 2007 19:00 GMT
This book covers the process of .NET application design and development from conception to deployment. Unlike many .NET books, this one uses VB.NET code for the examples, and even includes specific techniques such as this "Splash Screen" sample chapter.
Source: DevX
Extend Your Skills: Code for Mobile Using Your Current .NET Know-How   29 Mar 2007 03:12 GMT
You'd be surprised how much you already know about mobile app development. If you use Visual Studio 2005 to code Windows desktop or Web apps, then you have everything you need to get started in this fast-growing market. Find out just what you already know and how to bridge the gap between desktop and mobile. Also learn some tips for coding both mobile client and mobile Web apps.
Source: DevX
Get the Latest "WPF/E" (Codename) Community Technology Preview   28 Mar 2007 17:23 GMT
The February 2007 release of “WPF/E” is available and includes a refresh of “WPF/E” for Windows and Mac, a new SDK, and new samples. More than 10 new features are enabled in this release including better text input and presentation capabilities, mouse cursor support, better media rendering, improved programmability, and more.
Source: MSDN
Creating Custom Configuration Sections in Web.config Using .NET 2.0's Configuration API   28 Mar 2007 00:00 GMT

Most ASP.NET applications include a number of configuration settings, such as connection strings, mail server settings, system-wide default settings, and so forth. While these settings could be hard-coded in the source code, it's usually a wiser idea to place them in a configuration file, such as Web.config. The reasoning being that if these values need to be modified, editing a configuration file is a lot easier than updating the code, rebuilding, and re-deploying.

We can define custom configuration sections in Web.config that conforms to a pre-determined XML schema. For example, our web application might have a couple of scalar configuration settings (quoteOfTheDay and yourAge) as well as a collection of settings (favoriteStates) where each setting in the collection can have its own scalar values (name and abbreviation, let's say). This configuration information could be expressed in Web.config using the following XML markup:

<ScottsSettings
     quoteOfTheDay="Hello, World!"
     yourAge="28">
   <favoriteStates>
      <add name="California" abbreviation="CA" />
      <add name="Missouri" abbreviation="MO" />
      <add name="Illinois" />
   </favoriteColors>
</ScottsSettings>

In Creating Custom Configuration Sections in Web.config we examined a technique for parsing the XML in custom configuration section that works in both ASP.NET 1.x and 2.0 applications. This required writing a bit of code. ASP.NET 2.0 applications, however, can utilize .NET 2.0's new configuration API, which makes creating custom configuration sections much easier. Read on to learn more!
Read More >


Source: 4GuysFromRolla
Three Ways to Implement Dependency Injection in .NET Applications   22 Mar 2007 21:49 GMT
Replace dependencies with Dependency Injection pattern code to make your classes easier to test and reuse.
Source: DevX
ASP.NET 2.0 Web Part Infrastructure and SharePoint 2007   21 Mar 2007 01:13 GMT
Find out how to make your Web Parts communicate with each other and share data.
Source: DevX
Health Monitoring in ASP.NET 2.0: Notifications via Email   21 Mar 2007 00:00 GMT
  • Health Monitoring Basics - explores the concepts and advantages of the Health Monitoring system and looks at logging events to a Microsoft SQL Server database.
  • Notifications via Email - looks at security-related events and shows how to alert an administrator to failed authentication attempts by "logging" events to email.
  • (Subscribe to this Article Series! )

    A Multipart Series on ASP.NET 2.0's Health Monitoring System
    The Health Monitoring system in ASP.NET 2.0 is designed to monitor the health of a running ASP.NET application in a production environment. This article is one of an ongoing series on the Health Monitoring system.

    The Health Monitoring system in ASP.NET 2.0 is designed to monitor the health of a running ASP.NET application in a production environment. It works by recording event information to a specified log source. The .NET 2.0 Framework includes a variety of built-in events that can be used by the Health Monitoring system, including events for monitoring application re-starts and stops, unhandled exceptions, and failed authentication attempts, among others. The .NET Framework also include support for logging these events to the Windows event log, to a Microsoft SQL Server database, via WMI, in an email, and to the ASP.NET page tracing system. As we saw in The Basics, when using the out-of-the-box events and log sources, the Health Monitoring system can be setup and configured entirely through Web.config without needing to write a single line of code!

    In this article we will continue our exploration of the built-in events and log sources. In particular, we will look at the WebFailureAuditEvent event, which is raised when there is a security audit failure. We will also look at the SimpleMailWebEventProvider event provider, which, as its name implies, sends event information via email. Read on to learn more!
    Read More >


    Source: 4GuysFromRolla
    Event Tracing: Improve Debugging And Performance Tuning With ETW   16 Mar 2007 23:25 GMT
    Event Tracing for Windows (ETW) provides general-purpose, high-speed tracing of events raised by both user-mode applications and kernel-mode device drivers. Learn how ETW can improve your development and debugging work.
    Source: MSDN
    XmlLite: A Small And Fast XML Parser For Native C++   16 Mar 2007 23:19 GMT
    XmlLite provides a high-performance, low-overhead XML reader and writer for applications written in native C++. Learn more here.
    Source: MSDN
    1 2 3 4
     
    Sign In
    Join
    My Latest Posts
    My Monitored Threads
    My Blog
    My Photo Gallery
    My Profile
    My Homepage




    ©2008 Advenet LLC   Privacy Policy - Terms of Use
    This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.