hey,
i tried that it does not want to work. here is the code that does the page_load from DNN iFrame, where would i put the onLoad (0,0)
thanks
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
If (CType(Settings("src"), String)) <> "" Then
Dim FrameText As New StringBuilder
FrameText.Append("<iframe frameborder=""")
FrameText.Append(CType(Settings("border"), String))
FrameText.Append(""" src=""")
FrameText.Append(AddHTTP(CType(Settings("src"), String)))
FrameText.Append(""" height=""")
FrameText.Append(CType(Settings("height"), String))
FrameText.Append(""" width=""")
FrameText.Append(CType(Settings("width"), String))
FrameText.Append(""" title=""")
FrameText.Append(CType(Settings("title"), String))
FrameText.Append(""" name=""")
FrameText.Append(CType(Settings("title"), String))
FrameText.Append(""" scrolling=""")
FrameText.Append(CType(Settings("scrolling"), String))
FrameText.Append(""">")
FrameText.Append(Localization.GetString("Support", Me.LocalResourceFile))
FrameText.Append("</iframe>")
lblIFrame.Text = FrameText.ToString
End If