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

  • Home
  • SEARCH
  • 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 6546265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:41:13+00:00 2026-05-25T11:41:13+00:00

I have been asked to migrate some code to our new asp.net web app.

  • 0

I have been asked to migrate some code to our new asp.net web app. but I am extremely unfamiliar with asp.net.

The following block of code detects the user device and changes the url accordingly. I need to make the same logic using asp.net / c# but I have no clue where to start.

Any help at all is very appreciated.

    <xsl:variable name="useragent" select="lower-case(request:getHeader($request, 'user-agent'))"/>
<xsl:variable name="is_iphone" select="string(contains($useragent, 'iphone;') or contains($useragent, 'ipad;') or contains($useragent, 'ipod;'))"/>
<xsl:variable name="is_blackberry" select="string(contains($useragent, 'blackBerry'))"/>
<xsl:variable name="is_android" select="string(contains($useragent, 'android'))"/>
<xsl:variable name="application_url">
    <xsl:choose>
        <xsl:when test="$is_iphone = 'true'">
            <xsl:value-of select="f:getEnvParameter(concat('url.app.iphone.', $param_client), '')"/>
        </xsl:when>
        <xsl:when test="$is_blackberry = 'true'">
            <xsl:value-of select="f:getEnvParameter(concat('url.app.blackberry.', $param_client), '')"/>
        </xsl:when>
        <xsl:when test="$is_android = 'true'">
            <xsl:value-of select="f:getEnvParameter(concat('url.app.android.', $param_client), '')"/>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="''"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:variable>
<xsl:variable name="application_url_exists" select="string-length(string($application_url)) != 0"/>
  • 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-25T11:41:14+00:00Added an answer on May 25, 2026 at 11:41 am

    Something like this:

    //create your application url - for whatever you use this for after
                var applicationUrl = string.Empty;
                //Get the user agent
                var userAgent = Request.ServerVariables["HTTP_USER_AGENT"];
                //test the useragent and set application url
                if(userAgent.Contains("blackBerry"))
                {
                    applicationUrl = "url.app.blackberry";
                } else if(userAgent.Contains("android"))
                {
                    applicationUrl = "url.app.android";
                }...etc
    

    Then use your applicationUrl however you need to later…presumably some redirect or other…

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

Sidebar

Related Questions

I have been asked to develop some usercontrols in ASP.NET that will at a
I have been asked to modify an ASP.NET 3.5 web application. The solution file
I have been asked this question and have given this quite some thought but
I have been asked to design & develop a page in asp.net which contains
I have been asked to document some code. Some javascript functions pass parameters like
I have been asked to provide information on available techniques for assessing our current,
I have been asked to convert some Lotus 123 wk4 files with macros to
I know a lot of question regarding VB6 migration have been asked, but I
This seems to have been asked before: rails decimal precision and scale But when
I have been asked to come up with a solution which would allow our

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.