Click here to Skip to main content
15,884,986 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
How can I remove table tag around formview control?
Posted

1 solution

in version 4.0 introduces a new attribute named RenderOuterTable that modifies the control output.
default value is true. if you set it to false it renders a div tag instead(or nothing depends on control).
here is a list of controls that render table tag around them:
ChangePassword
CreateUserWizard
FomView
Login
PasswordRecovery
Wizard

you can modifiy the control output like this:

ASP.NET
<asp:Wizard runat="server" RenderOuterTable="false">
</asp:Wizard>
 
Share this answer
 
Comments
nairika vakili 3-Jun-12 12:19pm    
thanks a lot..your answer was a releaf..
taha bahraminezhad Jooneghani 3-Jun-12 12:24pm    
your welcome!
VJ Reddy 3-Jun-12 12:26pm    
Good answer. 5!
taha bahraminezhad Jooneghani 3-Jun-12 12:37pm    
thanks you a lot!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900