hello,
i have html textarea in asp dot net. i cannot add runat="server" tag in it because of some logics
i need to laod data from database on page laod and assign it to textbox
here is textrea
<textarea id="summernote" name="editordata" required="required" style="width:100%; height:150px;"></textarea>
here is how i load data on page load
DataView dview = (DataView)SqlDataSource1.Select(DataSourceSelectArguments.Empty);
if (dview.Table.Rows.Count > 0)
{
string name = Request.Form["editordata"];
string Question = (string)dview.Table.Rows[0]["Question"];
name = Question.ToString();
}
but it does not assign question string value to textarea which is in name string.