I have a a form that is using the textboxwatermarkextender on all of the textboxes on the page (approx. 20 in total). I have one user (out of 20, all using IE8) that is having problems viewing the page correctly. On this particular users pc, about 5 of the
textboxes do not render correctly as the watermark does not display. I have found nothing different in the coding of these five controls. This page is integrated with an older site that uses frames (2 frames, a top and a bottom). When the page is opened by
itself without the frames, the page renders fine and all watermarks are shown. Using Firefox, the page renders correctly both with and without the frames. I have posted the complete error below. Has anyone ran into this before? Is there a setting that needs
to be changed within the IE8? I have uninstalled and reinstalled IE both this has solved nothing?
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Yesterday I encounterd the same problem with loading a page with an MaskedEditExtender in an i-frame. I don't know whether you already have a solution, but what worked for me was setting the Enable property of the extender to false in the design mode and
in the page onload event putting the focus at an element containg the extender and then setting the Enable property of the extender to true.
if (!Page.IsPostBack)
{
tblContainer.Focus(); // element containg the Extender object 'MskdEdtExtndr'
dkirk
Member
518 Points
314 Posts
IE8 Message: Unspecified error.
Sep 08, 2009 06:03 PM|LINK
Hello,
I have a a form that is using the textboxwatermarkextender on all of the textboxes on the page (approx. 20 in total). I have one user (out of 20, all using IE8) that is having problems viewing the page correctly. On this particular users pc, about 5 of the textboxes do not render correctly as the watermark does not display. I have found nothing different in the coding of these five controls. This page is integrated with an older site that uses frames (2 frames, a top and a bottom). When the page is opened by itself without the frames, the page renders fine and all watermarks are shown. Using Firefox, the page renders correctly both with and without the frames. I have posted the complete error below. Has anyone ran into this before? Is there a setting that needs to be changed within the IE8? I have uninstalled and reinstalled IE both this has solved nothing?
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Timestamp: Tue, 8 Sep 2009 17:43:31 UTC
Message: Unspecified error.
Line: 173
Char: 9
Code: 0
URI: http://wus:92/ScriptResource.axd?d=iUh_ydm5QKDxnGwOIEwa3EbC5IXpRgCJHgg-RpnIqcORuOqtHivOH2xRVcSxnuP6hEByKn2vnIDZ7PvosHbGZZZ_Uf8r6quERqHGwrhigDQ1&t=633873257847420357
deleolowoyo
Member
6 Points
5 Posts
Re: IE8 Message: Unspecified error.
Sep 08, 2009 08:19 PM|LINK
Is it possible that the docutype for your page (or master page) needs to be updated to handle IE8 compatibility mode?
Possibly,
dkirk
Member
518 Points
314 Posts
Re: IE8 Message: Unspecified error.
Sep 08, 2009 09:16 PM|LINK
I appreciate the response but this is not the problem.
laranagorda
Member
2 Points
1 Post
Re: IE8 Message: Unspecified error.
Sep 15, 2009 10:45 AM|LINK
Yesterday I encounterd the same problem with loading a page with an MaskedEditExtender in an i-frame. I don't know whether you already have a solution, but what worked for me was setting the Enable property of the extender to false in the design mode and in the page onload event putting the focus at an element containg the extender and then setting the Enable property of the extender to true.
if (!Page.IsPostBack)
{
tblContainer.Focus(); // element containg the Extender object 'MskdEdtExtndr'
MskdEdtExtndr.Enabled = true;
}