can a placeholder be coded on the source code?
(please give an example)
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
aresha newalaniPosted Mar 5, 2014, 2:29 PM
I had coded in C# a placeholder like this..
Not sure what to do now...Please help...
Lakshmanan Sethu SankaranarayanPosted Mar 5, 2014, 12:55 AM
EnableViewState="True|False"
ID="string"
OnDataBinding="DataBinding event handler"
OnDisposed="Disposed event handler"
OnInit="Init event handler"
OnLoad="Load event handler"
OnPreRender="PreRender event handler"
OnUnload="Unload event handler"
runat="server"
SkinID="string"
Visible="True|False"
/>
Abhay ShankerPosted Mar 5, 2014, 12:49 AM
PlaceHolder plh = new PlaceHolder();
plh.Controls.Add(new LiteralControl("txtEmpName"));
placeHolder.Controls.Add(holder);