我在detailsview中放入了FCKeditor
然后我想在后台取值。
一般的做法是:TextBox txtTitle = this.DetailsView1.FindControl("txtTitle") as TextBox;
        string title = txtTitle.Text.Trim();但这种方法对FCKeditor 不管用。不知道还有什么方法能在后台取到fck的值。谢谢