Re: iFrames in DotNetNuke

  •  04-11-2010, 9:15 PM

    Re: iFrames in DotNetNuke

    Hi trssaxer,
     
     
    1. Open file CEHtmlEditorProvider.vb
     
    Find section below
     
     Protected Sub cntlCE_Load(ByVal sender As Object, ByVal e As EventArgs) Handles cntlCE.Load
                Try
                      AddDNNLinks()
                Catch ex As Exception
                    Throw New Exception("Check your provider configuration for errors!" & Environment.NewLine & ex.Message)
                End Try
            End Sub
     
    2. Change to
     
     Protected Sub cntlCE_Load(ByVal sender As Object, ByVal e As EventArgs) Handles cntlCE.Load
                Try
                    cntlCE.EnableStripIframeTags = False
                    AddDNNLinks()
                Catch ex As Exception
                    Throw New Exception("Check your provider configuration for errors!" & Environment.NewLine & ex.Message)
                End Try
            End Sub
     
    3. Re-bulid and try again.
     
    Regards,
     
    Ke
View Complete Thread