hi
i use these code in my page_load event
while (_dr.Read())
{
txtarticle.Text = _dr["Name"].ToString();
CKEditorControl1.Text = _dr["Description"].ToString();
and this is my table in database
pdf
|
Description
|
Name
|
id
|
Article.pdf
|
Test1
|
Article1
|
1
|
Article2.pdf
|
Test2
|
Article2
|
2
|
here in pdf column save pdf name that users upload it in website with fileupload control
in above code when page is load show data from table in textbox and ckeditor .
i want when page is load the name of pdf in (pdf column) show in fileupload control in my page like texbox and ckeditor that i put on page
best regards