Click here to Skip to main content
15,885,767 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.1K   797   23  
A comparison of three WURFL ASP.NET Implementations
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RedCircleWebForm.aspx.cs" Inherits="emx.tcp.wurfl.testharness1.RedCircleWebForm" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



<%--http://mobilelabs.redcircle.com/blogs/articles/archive/2006/10/04/ASP-.Net-for-mobile-devices-using-WURFL.aspx
--%>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>WURFL - RedCircle</title>
    <link type="text/css" rel="Stylesheet" href="_css/Global.css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>
     <h5>RedCircle.Framework.Wap.Wurfl</h5>
    <div id="aMenu"><a href="Default.aspx">menu</a> | <a href="http://mobilelabs.redcircle.com/blogs/articles/archive/2006/10/04/ASP-.Net-for-mobile-devices-using-WURFL.aspx" target="_blank">details</a></div>
    <fieldset>
    <legend>device settings</legend>
        <br />
        user agent:<br />
        <asp:DropDownList ID="cboUserAgent" runat="server" Width="100%">
        </asp:DropDownList>
        <br />
        capability:<br />
        <asp:DropDownList ID="cboCapabilities" runat="server" Width="100%">
        </asp:DropDownList>
        <br />
        <asp:Button ID="butGetCapability" runat="server" Height="16px" onclick="butGetCapability_Click" 
            Text=" " Width="16px" />
        &nbsp;get capability
        <hr />
        <asp:Label ID="lblResponse" runat="server" Text="capability: value"></asp:Label>
    </fieldset>
    
    <br />
    
    <fieldset>
    <legend>event log</legend>
        <br />
        <asp:Button ID="butClearLog" runat="server" Text=" " Height="16px" 
            Width="16px" onclick="butClearLog_Click" /> clear log
        <asp:TextBox ID="txtLog" runat="server" Height="132px" Width="207px" 
            TextMode="MultiLine"></asp:TextBox>
    </fieldset>
    
    </div>
    </form>
</body>
</html>

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