Click here to Skip to main content
15,891,473 members
Articles / Web Development / ASP.NET

WURFL ASP.NET Implementations

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
15 Jan 2009CPOL5 min read 81.2K   797   23  
A comparison of three WURFL ASP.NET Implementations
<?xml version="1.0" encoding="utf-8" ?>
<!-- Development version of logging config -->
<log4net debug="true">
	<!--
	==========================================================================================
	Loggers
	==========================================================================================
	-->
	<root>
		<level value="DEBUG" />
    <appender-ref ref="RollingLogFileAppender" />
	</root>

	<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
		<file value="c:\tmp\WurflSamples.txt"/>
		<appendToFile value="true"/>
		<maxSizeRollBackups value="10"/>
		<maximumFileSize value="1000000"/>
		<rollingStyle value="Size"/>
		<staticLogFileName value="true"/>
		<layout type="log4net.Layout.PatternLayout">
			<header value="[Start]======================================================================&#xA;"/>
			<footer value="[End]========================================================================&#xA;"/>
			<conversionPattern value="%date [%thread] %-5level %logger - %message%newline"/>
		</layout>
	</appender>
</log4net>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Encore Software
Australia Australia
Contractor in Desktop and Web applications.
Gold Coast, Queensland.

Comments and Discussions