Click here to Skip to main content
15,868,016 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Problem's with retrieve of content to Editor Ajax ..
I use AjaxControlToolkit NET45
File.aspx

ASP.NET
//connection to database is success and no problems with Other value 
//example : labael result …
 /*
       System.Data.SqlClient.SqlDataReader p = upd.Show_News(id);
     p.Read();
     news_title.Text = p["title"].ToString();    //this saved and I can show data but
       editor cant show data frame is empty ?
    when I post text into page_load  success  to set content of editor but with file.aspx cant why?

*/

Editor1.Content = p["content"].ToString();//Read From DB 
%>
<asp:TextBox ID="news_title" runat="server" CssClass="txttbl_add"></asp:TextBox>
<td>
               
                <cc1:Editor ID="Editor1" EnableTheming="true"   runat="server" />
                 <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
            </td>



i want return data from db to editor then update them ? how do that !!!
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900