|
|
posted on September 23, 2014 05:34
public void SetPageName(string PageName)
{
try
{
DotNetNuke.Framework.CDefault CustomPageName = (DotNetNuke.Framework.CDefault)this.Page;
CustomPageName.Title = PageName.ToString();
}
catch (Exception ex)
{
Exceptions.ProcessModuleLoadException(this, ex);
}
}
There are currently no comments, be the first to post one!