Connecting Tech Pros Worldwide Help | Site Map

BackColor binding does not work on postback

Dmitry Duginov
Guest
 
Posts: n/a
#1: Sep 28 '07
Hi,

I have the following label markup (label is inside FormView):

<asp:Label
ID="lblIndicatorReady" runat="server" Text="RE" ToolTip="Ready"
BackColor='<%#
Eval("Ready").ToString()=="True"?System.Drawing.Co lor.FromName("#FFFF80"):System.Drawing.Color.White
%>'
Enabled='<%# Eval("Ready") %>'
Font-Bold='<%# Eval("Ready") %>'>
</asp:Label>

I.e. late binding for the "Ready" property used to determine should the
label be
(bold, highighted and enabled) or (plain, white background, disabled)

On initial load everything works as expected (for ready items label is
colored). But on postbacks BackColor is always white for some reason.
Enabled and Bold properties are shown correctly though.

Any ideas?

Dmitry.











Steven Cheng[MSFT]
Guest
 
Posts: n/a
#2: Oct 1 '07

re: BackColor binding does not work on postback


Hi Dmitry,

As for the ASP.NET Label DataBinding backColor color problem, I have also
performed some tests on my side and did repro the same behavior. Actually,
here is something else I also got:

The problem is not specific to FormView but seems a binding issue of the
Label control. I can get this behavior even through the following simple
routine:

** put a Label on the top level of aspx form
** and use a page variable to perform databinding against the Label control
** After click another posback button, the previous bound color
lost(Forecolor property also suffers this problem)

Currently I'll do some further research on this and will update you if
there is any new finding or information.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================


This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
Quote:
>From: "Dmitry Duginov" <dima@nospam.nospam>
>Subject: BackColor binding does not work on postback
>Date: Fri, 28 Sep 2007 10:10:07 -0400
Quote:
>
>Hi,
>
>I have the following label markup (label is inside FormView):
>
><asp:Label
ID="lblIndicatorReady" runat="server" Text="RE" ToolTip="Ready"
BackColor='<%#
>Eval("Ready").ToString()=="True"?System.Drawing.C olor.FromName("#FFFF80"):S
ystem.Drawing.Color.White
Quote:
>%>'
Enabled='<%# Eval("Ready") %>'
Font-Bold='<%# Eval("Ready") %>'>
></asp:Label>
>
>I.e. late binding for the "Ready" property used to determine should the
>label be
>(bold, highighted and enabled) or (plain, white background, disabled)
>
>On initial load everything works as expected (for ready items label is
>colored). But on postbacks BackColor is always white for some reason.
>Enabled and Bold properties are shown correctly though.
>
>Any ideas?
>
>Dmitry.
>
>
>
>
>
>
>
>
>
>
>
>
Dmitry Duginov
Guest
 
Posts: n/a
#3: Oct 3 '07

re: BackColor binding does not work on postback



Hi, Steven!

Anything new? Workarounds, suggestions?

Dmitry

"Steven Cheng[MSFT]" <stcheng@online.microsoft.comwrote in message
news:WEiMsY9AIHA.240@TK2MSFTNGHUB02.phx.gbl...
Quote:
The problem is not specific to FormView but seems a binding issue of the
Label control. I can get this behavior even through the following simple
....
Quote:
Currently I'll do some further research on this and will update you if
there is any new finding or information.
>
>
This posting is provided "AS IS" with no warranties, and confers no
rights.
>
--------------------
Quote:
>>From: "Dmitry Duginov" <dima@nospam.nospam>
>>Subject: BackColor binding does not work on postback
>>Date: Fri, 28 Sep 2007 10:10:07 -0400
>
Quote:
>>
>>Hi,
>>
>>I have the following label markup (label is inside FormView):
>>
>><asp:Label
>ID="lblIndicatorReady" runat="server" Text="RE" ToolTip="Ready"
>BackColor='<%#
>>Eval("Ready").ToString()=="True"?System.Drawing. Color.FromName("#FFFF80"):S
ystem.Drawing.Color.White
Quote:
>>%>'
>Enabled='<%# Eval("Ready") %>'
>Font-Bold='<%# Eval("Ready") %>'>
>></asp:Label>
>>
>>I.e. late binding for the "Ready" property used to determine should the
>>label be
>>(bold, highighted and enabled) or (plain, white background, disabled)
>>
>>On initial load everything works as expected (for ready items label is
>>colored). But on postbacks BackColor is always white for some reason.
>>Enabled and Bold properties are shown correctly though.
>>
>>Any ideas?
>>
>>Dmitry.
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>

Steven Cheng[MSFT]
Guest
 
Posts: n/a
#4: Oct 4 '07

re: BackColor binding does not work on postback


Thanks for your followup Dmitry,

I'm still contacting some other ASP.NET engineers on this issue so as to
definitely confirm this issue.

For workarounds, currently what I have got is a possible means through
programmrtically update the TextBox's Color property through "PreRender"
event. The "PreRender" event is the latest event before the control being
rendered. Therefore, you can register this event for the textbox and detect
its value(through Text property) and programmaticlaly set its BackColor(or
other decorate properties...) at that time. e.g.

==============
protected void TextBox1_PreRender(object sender, EventArgs e)
{
TextBox txt = sender as TextBox;

if (txt.Text == ".....")
{
txt.BackColor = Color.Yellow;
}
else
{
txt.BackColor = Color.Maroon;
}
}
==============

In addition, by some futher testing, in some C# web site projects, I found
the problem is not always reproable. Therefore, I also suggest you to test
it in different projects and pages(you can use TextBox on page's top level
or inside a FormView). It would be helpful that if you can give me a
definite steps that can constantly repro the behavior.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
Quote:
>From: "Dmitry Duginov" <dima@nospam.nospam>
>References: <#oi4GldAIHA.4612@TK2MSFTNGP03.phx.gbl>
<WEiMsY9AIHA.240@TK2MSFTNGHUB02.phx.gbl>
Quote:
>Subject: Re: BackColor binding does not work on postback
>Date: Wed, 3 Oct 2007 16:42:26 -0400
>
>
>Hi, Steven!
>
>Anything new? Workarounds, suggestions?
>
>Dmitry
>
>"Steven Cheng[MSFT]" <stcheng@online.microsoft.comwrote in message
>news:WEiMsY9AIHA.240@TK2MSFTNGHUB02.phx.gbl...
>
Quote:
>The problem is not specific to FormView but seems a binding issue of the
>Label control. I can get this behavior even through the following simple
>...
Quote:
>Currently I'll do some further research on this and will update you if
>there is any new finding or information.
>>
>>
>This posting is provided "AS IS" with no warranties, and confers no
>rights.
>>
>--------------------
Quote:
>>>From: "Dmitry Duginov" <dima@nospam.nospam>
>>>Subject: BackColor binding does not work on postback
>>>Date: Fri, 28 Sep 2007 10:10:07 -0400
>>
Quote:
>>>
>>>Hi,
>>>
>>>I have the following label markup (label is inside FormView):
>>>
>>><asp:Label
>>ID="lblIndicatorReady" runat="server" Text="RE" ToolTip="Ready"
>>BackColor='<%#
>>>Eval("Ready").ToString()=="True"?System.Drawing .Color.FromName("#FFFF80")
:S
Quote:
Quote:
>ystem.Drawing.Color.White
Quote:
>>>%>'
>>Enabled='<%# Eval("Ready") %>'
>>Font-Bold='<%# Eval("Ready") %>'>
>>></asp:Label>
>>>
>>>I.e. late binding for the "Ready" property used to determine should the
>>>label be
>>>(bold, highighted and enabled) or (plain, white background, disabled)
>>>
>>>On initial load everything works as expected (for ready items label is
>>>colored). But on postbacks BackColor is always white for some reason.
>>>Enabled and Bold properties are shown correctly though.
>>>
>>>Any ideas?
>>>
>>>Dmitry.
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>
>
>
>
Dmitry Duginov
Guest
 
Posts: n/a
#5: Oct 5 '07

re: BackColor binding does not work on postback



"Steven Cheng[MSFT]" <stcheng@online.microsoft.comwrote in message
news:ep9%2388iBIHA.6080@TK2MSFTNGHUB02.phx.gbl...
Quote:
Thanks for your followup Dmitry,
>
I'm still contacting some other ASP.NET engineers on this issue so as to
definitely confirm this issue.
>
For workarounds, currently what I have got is a possible means through
programmrtically update the TextBox's Color property through "PreRender"
event. The "PreRender" event is the latest event before the control being
rendered. Therefore, you can register this event for the textbox and
detect
its value(through Text property) and programmaticlaly set its BackColor(or
other decorate properties...) at that time. e.g.
Sorry, Steven, but

- the issue is with the Label control, not a textbox
- highlighting has nothing to do with the value of its Text property, it is
bound to the property of a business object

Regards,
Dmitry
Quote:
==============
protected void TextBox1_PreRender(object sender, EventArgs e)
{
TextBox txt = sender as TextBox;
>
if (txt.Text == ".....")
{
txt.BackColor = Color.Yellow;
}
else
{
txt.BackColor = Color.Maroon;
}
}
==============
>
In addition, by some futher testing, in some C# web site projects, I found
the problem is not always reproable. Therefore, I also suggest you to test
it in different projects and pages(you can use TextBox on page's top level
or inside a FormView). It would be helpful that if you can give me a
definite steps that can constantly repro the behavior.
>
Sincerely,
>
Steven Cheng
>
Microsoft MSDN Online Support Lead
>
>
This posting is provided "AS IS" with no warranties, and confers no
rights.
>
--------------------
Quote:
>>From: "Dmitry Duginov" <dima@nospam.nospam>
>>References: <#oi4GldAIHA.4612@TK2MSFTNGP03.phx.gbl>
<WEiMsY9AIHA.240@TK2MSFTNGHUB02.phx.gbl>
Quote:
>>Subject: Re: BackColor binding does not work on postback
>>Date: Wed, 3 Oct 2007 16:42:26 -0400
>>
>>
>>Hi, Steven!
>>
>>Anything new? Workarounds, suggestions?
>>
>>Dmitry
>>
>>"Steven Cheng[MSFT]" <stcheng@online.microsoft.comwrote in message
>>news:WEiMsY9AIHA.240@TK2MSFTNGHUB02.phx.gbl...
>>
Quote:
>>The problem is not specific to FormView but seems a binding issue of the
>>Label control. I can get this behavior even through the following simple
>>...
Quote:
>>Currently I'll do some further research on this and will update you if
>>there is any new finding or information.
>>>
>>>
>>This posting is provided "AS IS" with no warranties, and confers no
>>rights.
>>>
>>--------------------
>>>>From: "Dmitry Duginov" <dima@nospam.nospam>
>>>>Subject: BackColor binding does not work on postback
>>>>Date: Fri, 28 Sep 2007 10:10:07 -0400
>>>
>>>>
>>>>Hi,
>>>>
>>>>I have the following label markup (label is inside FormView):
>>>>
>>>><asp:Label
>>>ID="lblIndicatorReady" runat="server" Text="RE" ToolTip="Ready"
>>>BackColor='<%#
>>>>Eval("Ready").ToString()=="True"?System.Drawin g.Color.FromName("#FFFF80")
:S
Quote:
Quote:
>>ystem.Drawing.Color.White
>>>>%>'
>>>Enabled='<%# Eval("Ready") %>'
>>>Font-Bold='<%# Eval("Ready") %>'>
>>>></asp:Label>
>>>>
>>>>I.e. late binding for the "Ready" property used to determine should the
>>>>label be
>>>>(bold, highighted and enabled) or (plain, white background, disabled)
>>>>
>>>>On initial load everything works as expected (for ready items label is
>>>>colored). But on postbacks BackColor is always white for some reason.
>>>>Enabled and Bold properties are shown correctly though.
>>>>
>>>>Any ideas?
>>>>
>>>>Dmitry.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>>
>>
>>
>

Dmitry Duginov
Guest
 
Posts: n/a
#6: Oct 9 '07

re: BackColor binding does not work on postback



"Steven Cheng[MSFT]" <stcheng@online.microsoft.comwrote in message
news:g6WrLvaCIHA.4144@TK2MSFTNGHUB02.phx.gbl...
Quote:
Hi Dmitry,
>
Sorry for keep you waiting.
>
After some further research, I got the cause of the problem. It is
actually
caused by the "Color.FromName" function you used. In your original code,
you use it as below:
>
System.Drawing.Color.FromName("#FFFF80")
Quote:
lost on postback). One quick resolution here(if you do need to specify the
"#xxxxxx" like html color instead of a known color name or RGB value, you
can use the ColorTranslator.FromHtml() method instead. e.g.
Thank you! It resolved the issue.

Dmitry.


Steven Cheng[MSFT]
Guest
 
Posts: n/a
#7: Oct 10 '07

re: BackColor binding does not work on postback


You're welcome!

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
Quote:
>From: "Dmitry Duginov" <dima@nospam.nospam>
>References: <#oi4GldAIHA.4612@TK2MSFTNGP03.phx.gbl>
<WEiMsY9AIHA.240@TK2MSFTNGHUB02.phx.gbl<eo0no3fBIH A.91
Quote:
>Subject: Re: BackColor binding does not work on postback
>Date: Tue, 9 Oct 2007 17:00:56 -0400
Quote:
>
>
>"Steven Cheng[MSFT]" <stcheng@online.microsoft.comwrote in message
>news:g6WrLvaCIHA.4144@TK2MSFTNGHUB02.phx.gbl...
Quote:
>Hi Dmitry,
>>
>Sorry for keep you waiting.
>>
>After some further research, I got the cause of the problem. It is
>actually
>caused by the "Color.FromName" function you used. In your original code,
>you use it as below:
>>
>System.Drawing.Color.FromName("#FFFF80")
>
Quote:
>lost on postback). One quick resolution here(if you do need to specify
the
Quote:
Quote:
>"#xxxxxx" like html color instead of a known color name or RGB value, you
>can use the ColorTranslator.FromHtml() method instead. e.g.
>
>Thank you! It resolved the issue.
>
>Dmitry.
>
>
>
Closed Thread