Re: Custom Button for linking to internal pages

  •  03-30-2005, 4:57 PM

    Re: Custom Button for linking to internal pages

    I got it to work. Here is the code so far:
     
    Dim EditorDL As CuteEditor.RichDropDownList
     

    EditorDL =

    New CuteEditor.RichDropDownList(Editor1)
    EditorDL = Editor1.ToolControls("Links").Control
     
     

    EditorDL.Items.Clear()

    EditorDL.Items.Add("Internal Links")

    EditorDL.Items.Add("home page", "Default.aspx?pageId=8")
     
    I still need to get the page info from the DB but that should be easy
     
    Andy
View Complete Thread