Hi,
I am creating a simple control that inherits from compositeControl.
The control is a list of linkbuttons.
Usually, when the linkbutton render, it includes something like javascript:_doPostBack(...) which tells the client to postback and not to follow the link directly.
My problem is that it is not my case.
Here is part of my overrided render method (mListeLiens is a list of linkbuttons)
vWriter.RenderBeginTag(HtmlTextWriterTag.Li)
mListeLiens(index).RenderControl(vWriter)
vWriter.RenderEndTag()
Does my controls need to be added to Page.Form.Controls, or do they have to be in a panel...or something else?
Thanks,
Phil