I have a responsive mobile site that works and shows perfect on browser and also if I open directly on mobile.
Now after i set site redirection on the main portal and browse again i get redirected correctly but the site shows empty I dont see images and only the base html it looks as if none of the css is loaded
Now if I disable the sire redirection rule on the main portal and update a skin myself to redirect using ClientCapability the site loads perfect again. this is what I am doing in my skin
<
script
runat
=
"server"
>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim device As IClientCapability = ClientCapabilityProvider.CurrentClientCapability
If device.IsMobile Then
End If
End Sub
</
script
>
Anyone have an idea what can cause this behavior?