When I develop a standard asp.net application I can use
HttpContext.Current.Response.Redirect to go to another page. In a mobile
application, I need use RedirectToMobilePage instead of Redirect. The problem
is that in an asp.net I have a static class HttpContext do access the
Redirect method, that is, whatever in the application I can redirect to
another page. I there a way, in a mobile app, where I have access to current
mobile page to access the RedirectToMobilePage method? I would like, for
example, if I am in the business layer, do a mobile redirection but I dont
have if there is a HttpContext equivalent in mobile app.
Thanks.