Quick Ajax example using Prototype.js

by Steven Ng on March 20, 2007

Overview

UPDATE: Please visit my updated article appropriately named “Quick Ajax Example Using jQuery“.

This example will explain how to use the Prototype.js Javascript library to perform a simple Ajax call from an html page to an ASP.NET … Read the rest

Using Log4net in your web apps

by Steven Ng on March 20, 2007

Log4net is part of the Apache Logging Services Project. It’s a tool to help ASP.net developers log message to a text file, xml file, email or database.

  1. Add log4net.Config.XmlConfigurator.Configure(); to Global.asax in the Application_Start method.
  2. In your code-behind or BasePage.cs,
  3. Read the rest