Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use repeater to display records fetching from database, especially I use div tag to display html content stored in datatable. But I don't know how to find the div in backend. In Repeater_ItemDataBound event I can use

Control divControl=e.Item.FindControl("divControl"); 

to get it but it does not have innerHtml property to set html content. Does anyone know how to get it as a div control?

share|improve this question

2 Answers

up vote 2 down vote accepted

HtmlGenericControl defines the methods, properties, and events for all HTML server control elements not represented by a specific .NET Framework class.

So if its a server control you can simply use:

HtmlGenericControl divControl = e.Item.FindControl("divControl") as HtmlGenericControl;
share|improve this answer
1  
You'll aslo need the divControl to be runat="server" – JNappi Aug 24 '11 at 15:44
@JNappi: Thanks, I thought that point is obvious.. :-) – CD.. Aug 24 '11 at 15:46

To find the DIV in the code behind, you'll need to add the runat="server" tag to the DIV. If you're going to do that, you might as well just use a Panel, as it outputs a DIV anyway.

After doing the above, you should be able to find it like this:

Panel panel = (Panel)Repeater1.Items[0].FindControl("Panel1");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.