Skip to content Skip to sidebar Skip to footer

Issue Of Asp Controls Displayed In Table Form On Browser Html Page

Local version of my asp.net web application display menu control data in html div tag and live version displays it in html table can any one tell me why this happens ?

Solution 1:

Your local copy is running asp.net 4, your host is running 3.5.

You can force the rendering mode by setting the RenderingMode property. More details here:

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.menu.renderingmode.aspx

Solution 2:

Make sure that IIS application pool of your website on server uses same version of .NET Framework like your development machine.

Post a Comment for "Issue Of Asp Controls Displayed In Table Form On Browser Html Page"