You are currently viewing the BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I created a label in the control welcomebox so that i can change the content at running time on the web site.
I access the content from an admin page created in /admin in wich i change the content with a fckeditor box. I store the value on a field on the database in a table that i created for this purpose.
The problem is that on some IE < version 7 the labels does not show.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using MB.TheBeerHouse.UI;
namespace MB.TheBeerHouse.UI.Controls
{
public partial class WelcomeBox : BaseWebPart
{
public WelcomeBox()
{
this.Title = "Welcome Box";
}
can you post that is generated in the browser ? (right click/view source)
Since that is the code that isn't showing fine. If your control works in some browsers, it must be the rendered code that does't run