Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6998059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:21:46+00:00 2026-05-27T20:21:46+00:00

I am using the MobileViewEngines describe here by Scott Hanselman, and the 51Degrees.mobi browser

  • 0

I am using the MobileViewEngines describe here by Scott Hanselman, and the 51Degrees.mobi browser database to render different views for mobile and desktop browsers.

I now want to add a middle ground. For High-End mobile browsers (apple, android, windows phone, some blackberry etc). I am thinking of using the Touch screen to differentiate this category.

So, two questions:

  1. How do I Detect the Touch Screen using 51Degrees.mobi?
  2. Is the touch input a good way to go about it? (I need the desktop, high-end, low-end categories)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T20:21:47+00:00Added an answer on May 27, 2026 at 8:21 pm

    I work at 51Degrees.mobi. You can detect if a device is a touch screen using Request.Browser["IsTouchScreen"]

    However, using that elegantly within MVC is a bit more involved. From looking at the source of MobileCapableViewEngine it seems like you can make a new engine by copying the mobile engine and changing the FindView method:

    public override ViewEngineResult FindView(ControllerContext controllerContext, string viewName,
                                                  string masterName, bool useCache)
        {
            string overrideViewName = controllerContext.HttpContext.Request.Browser["IsTouchScreen"] == "True"
                                          ? viewName + ".Touch"
                                          : viewName;
            ViewEngineResult result = NewFindView(controllerContext, overrideViewName, masterName, useCache);
    
            // If we're looking for a Touch view and couldn't find it try again without modifying the viewname
            if (overrideViewName.Contains(".Touch") && (result == null || result.View == null))
            {
                result = NewFindView(controllerContext, viewName, masterName, useCache);
            }
            return result;
        }
    

    This new engine will then need to be added to the mobile engines boot strapper and create Touch views.

    Before doing this though, you should think about if this is how you want to separate devices. For instance, the Nokia X3-02 has a comparatively small screen but would be presented with same view as something like an iPad. Perhaps you should consider using the OS of the device, ie Request.Browser["PlatformName"]

    Finally, 51Degrees.mobi Foundation version 2 introduces our own device data that uses different capability names from the previous one. You can read mroe about it at 51Degrees.mobi

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using the following as an example (with $db being a previously created database connection
Using the following database table structure: Order Table: OrderId OrderName OrderItem Table: OrderId ItemId
Using Visual SourceSafe's Open SourceSafe Database... command, there is an option at the bottom
Using Play 2.1-RC1 I can't write simple test. Here's the action code: def echoTestTagFromXml
Using MongoDB C# Driver (official form 10gen), I'm doing the following code: using (database.RequestStart())
Using a CSS image sprite, I'm creating an 'interactive' image where hovering over certain
Using a populated Table Type as the source for a TSQL-Merge. I want to
using this http://bl.ocks.org/950642 we can see how to add images to nodes, the question
Using SQL Server 2008 R2 we are looking for a way to select the
Using CI for the first time and i'm smashing my head with this seemingly

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.