hi all is there any asp.net server control that is not rendering in html page ?
for instance <asp: TextBox runat ="server" id="Textbox1"><asp:/TextBox> is rendered as <input type="Text" id="textbox1"/>?
i think you would understand my question ?
hi all is there any asp.net server control that is not rendering in html
Share
The Literal control is not rendered unless something is added to the Text property, in which case just the contents of the Text property are rendered. Likewise, the Placeholder control only renders the controls placed in its Controls collection.