To make the Mobile redirection web part work from code, you need to at least specify the following parameters:
<%@ Register Src="~/CMSWebParts/General/MobileDeviceRedirection.ascx" TagName="MobileRedirect" TagPrefix="cms" %>
<cms:MobileRedirect ID="MobileRedirect" runat="server" SmallDeviceRedirectionURL="~/Some_Path.aspx LargeDeviceRedirectionURL="~/Some_Path.aspx" RedirectAndroid="automatic" RedirectBlackBerry="automatic" RedirectIPad="automatic" RedirectIPhone="automatic" RedirectNokia="automatic" />
-jh-