Knowledge Base

Snippets

23
        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);
            }
        }
Posted in: DNN, Custom Modules

Comments

There are currently no comments, be the first to post one!

Post Comment

Only registered users may post comments.