Hi Stefan,
thank you for tip. I googled and find this Dotnetnuke Wiki information
http://local.dotnetnuke.com/Community...
I inherit the
MobileUserControl and Implement the
IModuleControl Interface. When I read the page above (dotnetnuke wiki) ControlPath+ControlName+LocalResourceFile properties are clear.
but I'm struggling with the other 2 properties : Control + ModuleContext.
Could you please advice the approach, how can I fix this ? I mean I want definitly inherit from MobileUserControl....
Maybe a peace of code will help...
thanks for the tips and advices,
mesut
namespace ABC.CustomModules.Mobile_Mainpage
{
partial class ViewMobile_Mainpage : System.Web.UI.MobileControls.MobileUserControl, DotNetNuke.UI.Modules.IModuleControl
{
#region IModuleControl Members
public new Control Control
{
get { throw new NotImplementedException(); }
}
public string ControlName
{
get { throw new NotImplementedException(); }
}
public string ControlPath
{
get { throw new NotImplementedException(); }
}
public string LocalResourceFile
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public ModuleInstanceContext ModuleContext
{
get { throw new NotImplementedException(); }
}
#endregion
}
}