Hello,
I am trying to set the text of the label control which is inside detailsview but it's not working.
can anyone guide me please.. ??
My HTML Code :-
Code Behind :
i
protected void Page_Load(object sender, EventArgs e)
{
int question_id = 1;
Label Question_Id = DetailsView1.FindControl("Ques_id_label") as Label;
Ques_id_label.Text = Convert.ToString(question_id);
}
Please Help Me....
Ranjeet PatraPosted Apr 1, 2017, 10:40 AM