I have the following code that works great on the normal site. Once I switch to mobile, it doesn't return anything as SectionTitle. Any suggestions?
Code:public string GetSectionTitle() { string SectionTitle = string.Empty; try { Page p = HttpContext.Current.Handler as Page; SectionTitle = (p as SkinBase).SectionTitle; } catch { } return SectionTitle; }