Dropdown and red editor change content

Posts   
 
    
DAVE30B
User
Posts: 8
Joined: 12-Oct-2007
# Posted on: 19-Dec-2007 12:04:33   

I just want to give the user a drop down which lists all the languages that is avaible to the end user

how do i on the selected index change

    int pageid = Convert.ToInt32(Request.QueryString["pageid"]);
            PagesEntity page = new PagesEntity(pageid);
            if (pageid > 0)
            {
                _dataservice.FillEntity(page, null);
                txtextension.Text = page.PageExtension;
                txttitle.Text = page.PageTitle;
                txtname.Text = page.PageName;


                radpageeditor.Html = page.PageContent;
            }

do that but tell it to fecth where my language id = dropdown langauge id

Walaa avatar
Walaa
Support Team
Posts: 14995
Joined: 21-Aug-2005
# Posted on: 19-Dec-2007 15:42:16   

Your question is not clear, please post the involved tables DDL, and the SQL query you need to execute.