how to show textbox dynamically in asp.net
i want to show textbox in asp.net dynamically how it is po开发者_如何学Pythonssible in asp.net using c#
If it is just one text box, you can use the Visible
property.
If you want to show a list of text boxes, use an asp:Repeater
or similar.
The instructions from MSDN are here:
http://msdn.microsoft.com/en-us/library/kyt0fzt1.aspx
精彩评论