2017-01-05 3 views

Antwort

1

Sie verwenden HtmlGenericControl

if (e.Row.RowType == DataControlRowType.DataRow) 
{ 
    HtmlGenericControl p = e.Row.FindControl("p_id") as HtmlGenericControl; 
    p.InnerText = "It works!"; 
} 
Verwandte Themen