473,396 Members | 2,020 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Text Color Based on DB Value

I am using dreamweaver to make an ASP page. I have a table of data
from a MSSQL database that is currently showing on the ASP page. I
want the ability to change the color based on a priority number that's
in the MSSQL database (same recordset that the data comes from). I
don't have the priority field out on the page but can put it out if
need be. I have 3 different priority numbers and if the first row is
priority 1 I want the font to be red and if the second row is priority
2 I want the color to be yellow and so on.

Thanks

Chris

Jul 27 '05 #1
31 3075
col = rs("priority")
if col = 1 then
fontcolor = "#FF0000"
elseif col = 2 then
fontcolor = "#FFFF00"
end if
response.write "<span style='color:" & fontcolor & "'>" & stuff & "</span>"

"Chris Stanley" <ch**********@gmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
I am using dreamweaver to make an ASP page. I have a table of data
from a MSSQL database that is currently showing on the ASP page. I
want the ability to change the color based on a priority number that's
in the MSSQL database (same recordset that the data comes from). I
don't have the priority field out on the page but can put it out if
need be. I have 3 different priority numbers and if the first row is
priority 1 I want the font to be red and if the second row is priority
2 I want the color to be yellow and so on.

Thanks

Chris

Jul 27 '05 #2
Thanks for the quick response. Is there a certain place I need to put
this code???

Chris

Jul 27 '05 #3

"Chris Stanley" <ch**********@gmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
I am using dreamweaver to make an ASP page.
8|
I have a table of data
from a MSSQL database that is currently showing on the ASP page. I
want the ability to change the color based on a priority number that's
in the MSSQL database (same recordset that the data comes from). I
don't have the priority field out on the page but can put it out if
need be. I have 3 different priority numbers and if the first row is
priority 1 I want the font to be red and if the second row is priority
2 I want the color to be yellow and so on.

You could use the priority number in your CSS class name like so:
<style type="text/css">
tr.priority1 { background-color: #ff0000; }
tr.priority2 { background-color: #ffff00; }
tr.priorityAndSoOn { background-color: #AndSoOn; }
</style>
<%
Do While Not yourRS.EOF
sPriority = yourRS.Fields.Item("Priority").Value & "")
%>
<tr class="priority<%=sPriority%>">
<td><%=yourRS.Fields.Item("something").Value%></td>
...
</tr>
<%
yourRS.MoveNext
Loop
%>

Ray at work



Jul 27 '05 #4
> Thanks for the quick response. Is there a certain place I need to put
this code???


Uh, well, probably inside the loop...
Jul 27 '05 #5
> tr.priority1 { background-color: #ff0000; }
tr.priority2 { background-color: #ffff00; }


Ooh, I like that approach even better than my suggestion.

I get light-headed when I see HTML code that is half <font color=#blah>
tags... especially when they're all the same. I always find myself pounding
my head against the wall, dying to ask when they're going to look up this
"CSS" concept they may have heard about.
Jul 27 '05 #6
I'm very new to CSS, is this something DWeaver can do in the CSS
Styles??? or do I need to just use the code above??

Chris

Jul 27 '05 #7
I'm trying my best always to use CSS, but it gets my goat. Unless I'm
missing something, not ~every~ inline attribute has a CSS equivalent, and
that's frustrating!

Ray at work

"Aaron Bertrand [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:uA**************@TK2MSFTNGP12.phx.gbl...
tr.priority1 { background-color: #ff0000; }
tr.priority2 { background-color: #ffff00; }
Ooh, I like that approach even better than my suggestion.

I get light-headed when I see HTML code that is half <font color=#blah>
tags... especially when they're all the same. I always find myself

pounding my head against the wall, dying to ask when they're going to look up this
"CSS" concept they may have heard about.

Jul 27 '05 #8
I haven't gotten anything to work so far. I'm probably doing something
wrong. I tried the first code but no color changes. I didn't try the
CSS b/c I don't really know what to do with it. I am very new to this.

Chris

Jul 27 '05 #9
"Chris Stanley" <ch**********@gmail.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...
I haven't gotten anything to work so far. I'm probably doing something
wrong. I tried the first code but no color changes. I didn't try the
CSS b/c I don't really know what to do with it. I am very new to this.


Can you show us the code you have thus far?
Jul 27 '05 #10
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:eU**************@tk2msftngp13.phx.gbl...
I'm trying my best always to use CSS, but it gets my goat. Unless I'm
missing something, not ~every~ inline attribute has a CSS equivalent, and
that's frustrating!


Are you just going to leave us hanging like that!? :) What inline display
attribute is not represented in CSS? Also, which version of CSS are we
talking about 1, 2, 2.1, 3? Inquiring minds want to know.
Jul 27 '05 #11
OK, here's my code:

<html>
<head>
<title>Surry County E-911 Active Calls</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<style type="text/css">
<!--
-->
</style>
<style type="text/css">
<!--
-->
</style>
<meta http-equiv="Refresh" content="30">
</head>

<body bgcolor="#000000">
<div align="center">
<p><font color="#FFFFFF" size="7" face="Tahoma">Surry County E-911
Active Calls</font></p>
<p>&nbsp;</p>

<p><font color="#FF0000"> </MM:DECORATION></font></p>
<table width="97%" border="0" align="center">
<tr>
<td width="14%"><div align="left"><font color="#FF0000" size="5"
face="Tahoma">Call
Number</font></div></td>
<td width="16%"><div align="left"><font color="#FF0000" size="5"
face="Tahoma">Complaint</font></div></td>
<td width="38%"><div align="left"><font color="#FF0000" size="5"
face="Tahoma">Incident
Location</font></div></td>
<td width="18%"><div align="left"><font color="#FF0000" size="5"
face="Tahoma">City</font></div></td>
<td width="14%"><div align="left"><font color="#FF0000" size="5"
face="Tahoma">
Unit</font></div></td>
</tr>
</table>
<hr>
<p>&nbsp;</p>
<MM_REPEATEDREGION NAME="Repeat1" SOURCE="Recordset1"><MM:DECORATION
OUTLINE="Repeat" OUTLINEID=1>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<table width="97%" border="0" align="center">
<tr>
<td width="15%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("Call_Num ber").Value)%></font></strong></font></td>
<td width="16%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("Complain t").Value)%></font></strong></font></td>
<td width="38%"><div align="left"><font color="#00FFFF"
size="3"><strong><font
face="Tahoma"><%=(Recordset1.Fields.Item("Actual_I ncid_Location").Value)%></font></strong></font></div></td>
<td width="18%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("Actual_I ncid_City").Value)%></font></strong></font></td>
<td width="13%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("First_Un it").Value)%></font></strong></font></td>
</tr>
</table>
<%

Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
<font color="#FF0000"> </font>
<p>&nbsp;</p>
<p align="left"><font color="#FFFFFF" size="5" face="Tahoma">Total
Active Calls:
<%=(Recordset1_total)%></font></p>
<p align="left">&nbsp;</p>

</div>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
Thanks

Chris

Jul 27 '05 #12
Well, in a way I spoke too soon. I guess I was thinking of cellpadding and
cellspacing, but I do understand that the padding and margin of the ~cells~
replace those! But what about something as basic AND COMMON as <table
align="center">?

I think what I'm most upset about is the fact that a span can't have a width
(strictly speaking). I hate that.

Ray at home

"Chris Hohmann" <no****@thankyou.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:eU**************@tk2msftngp13.phx.gbl...
I'm trying my best always to use CSS, but it gets my goat. Unless I'm
missing something, not ~every~ inline attribute has a CSS equivalent, and
that's frustrating!


Are you just going to leave us hanging like that!? :) What inline display
attribute is not represented in CSS? Also, which version of CSS are we
talking about 1, 2, 2.1, 3? Inquiring minds want to know.

Jul 28 '05 #13
I don't see anything that's an attempt to change colors. ?? I think your
first step would be to get rid of those <font> tags you have. How about:

<style type="text/css">
tr.priority1 { background-color: #ff0000; }
tr.priority2 { background-color: #ffff00; }
</style>

<table width="97%" border="0" align="center">
<tr class="priority<%=Recordset1.Fields.Item("Priority ").Value%>">
<td
width="15%"><%=(Recordset1.Fields.Item("Call_Numbe r").Value)%></td>
<td width="16%"><%=(Recordset1.Fields.Item("Complaint" ).Value)%></td>
<td
width="38%"><%=(Recordset1.Fields.Item("Actual_Inc id_Location").Value)%></td>
<td
width="18%"><%=(Recordset1.Fields.Item("Actual_Inc id_City").Value)%></td>
<td width="13%"><%=(Recordset1.Fields.Item("First_Unit ").Value)%></td>
</tr>
</table>
I know this is easier said than done, but your first step actually ought to
be to stop using Dreamweaver for code writing. If you want to use it for
design, that's one thing, but it shouldn't be used for ASP code, imo.

Ray at home

"Chris Stanley" <ch**********@gmail.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...
<MM_REPEATEDREGION NAME="Repeat1" SOURCE="Recordset1"><MM:DECORATION
OUTLINE="Repeat" OUTLINEID=1>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<table width="97%" border="0" align="center">
<tr>
<td width="15%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("Call_Num ber").Value)%></font></strong></font></td>
<td width="16%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("Complain t").Value)%></font></strong></font></td>
<td width="38%"><div align="left"><font color="#00FFFF"
size="3"><strong><font
face="Tahoma"><%=(Recordset1.Fields.Item("Actual_I ncid_Location").Value)%></font></strong></font></div></td>
<td width="18%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("Actual_I ncid_City").Value)%></font></strong></font></td>
<td width="13%"><font color="#00FFFF"><strong><font size="3"
face="Tahoma"><%=(Recordset1.Fields.Item("First_Un it").Value)%></font></strong></font></td>
</tr>
</table>
<%

Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
<font color="#FF0000"> </font>
<p>&nbsp;</p>
<p align="left"><font color="#FFFFFF" size="5" face="Tahoma">Total
Active Calls:
<%=(Recordset1_total)%></font></p>
<p align="left">&nbsp;</p>


Jul 28 '05 #14
Gazing into my crystal ball I observed "Ray Costanzo [MVP]" <my first
name at lane 34 dot commercial> writing in
news:#v**************@TK2MSFTNGP12.phx.gbl:
Well, in a way I spoke too soon. I guess I was thinking of cellpadding
and cellspacing, but I do understand that the padding and margin of the
~cells~ replace those! But what about something as basic AND COMMON as
<table align="center">?
table {text-align:center} /*centers the table content */
table {margin-left:auto; margin-right:auto; width:whatever} /* centers the
~table~ in the viewport*/

I think what I'm most upset about is the fact that a span can't have a
width (strictly speaking).
Span is an inline element, you really wouldn't want it to have width. But,
you can always use display:block and then set a width. There is also
display:table-inline, etc., but these some of these are not supported by
our favorite browser. I very rarely use span, I usually style the element.
I hate that.
What I really hate is max and min width not supported by IE, position:fixed
not supported by IE, hover pseudo class only working for the A element in
IE, alpha transparency in PNGs not supported by IE. If I could, I would go
to everyone's Windows computer, remove IE, and replace it with Opera or
Firefox.


Ray at home

"Chris Hohmann" <no****@thankyou.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote
in message news:eU**************@tk2msftngp13.phx.gbl...
I'm trying my best always to use CSS, but it gets my goat. Unless
I'm missing something, not ~every~ inline attribute has a CSS
equivalent, and that's frustrating!


Are you just going to leave us hanging like that!? :) What inline
display attribute is not represented in CSS? Also, which version of
CSS are we talking about 1, 2, 2.1, 3? Inquiring minds want to know.



--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 28 '05 #15
That did it. Thanks for the help.

Chris

Jul 28 '05 #16

"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...

table {text-align:center} /*centers the table content */
table {margin-left:auto; margin-right:auto; width:whatever} /* centers the
~table~ in the viewport*/
The margin one is the work-around that I would typically use, but then I
decide that it just makes 100 times more sense to stop being so absolute and
just use the inline align="center" attribute, as much as I hate to do it.


I think what I'm most upset about is the fact that a span can't have a
width (strictly speaking).
Span is an inline element, you really wouldn't want it to have width.

But, you can always use display:block and then set a width. There is also
display:table-inline, etc., but these some of these are not supported by
our favorite browser. I very rarely use span, I usually style the element.

I understand why the span doesn't have a width, but I disagree with it. And
as far as the display:block, that kinda defeats the purpose of the span.
Also, if you want to get technical, I want to say that as soon as you do a
display:inline to a block element like a table, that will void any width
styles in strict browsers. 8[
I hate that.
What I really hate is max and min width not supported by IE,

position:fixed not supported by IE, hover pseudo class only working for the A element in
IE, alpha transparency in PNGs not supported by IE. If I could, I would go to everyone's Windows computer, remove IE, and replace it with Opera or
Firefox.


I'm just going to start writing console applications. :]

Rya at work
Jul 28 '05 #17
"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...
What I really hate is max and min width not supported by IE,
position:fixed
not supported by IE, hover pseudo class only working for the A element in
IE, alpha transparency in PNGs not supported by IE. If I could, I would
go
to everyone's Windows computer, remove IE, and replace it with Opera or
Firefox.


Amen to that! Just give us hover pseudo class support for lists and I'd be
satisfied. We could then do away with JavaScript menus altogether. Hopefully
the powers that be are listening. :) Here's a CSS/DHTML hybrid that uses
behaviors to add support for Internet Explorer, if anyone is interested.

http://www.brothercake.com/scripts/navmeister/page.php
Jul 28 '05 #18
> I understand why the span doesn't have a width, but I disagree with it.

If it's a <div> then use a <div>. A span is contained within another
element that has some kind of defined width. If you need to define widths
inside that way, then as much as I hate to suggest it, I would say use a
table instead (or the very complex kind of CSS that properly replicates a
table, but in a much more cumbersome fashion).

Jul 28 '05 #19
Ray Costanzo [MVP] wrote:
I'm trying my best always to use CSS, but it gets my goat.
Unless I'm missing something, not ~every~ inline attribute
has a CSS equivalent, and that's frustrating!


This is perhaps my single biggest gripe with Internet Explorer's stagnation.
There are many CSS features already implemented in other browsers that IE
still does not understand. And that effectively renders them nonexistent
unless authors are willing to ignore IE users.

The blame for your frustration regarding CSS, then, lies squarely with
Microsoft, not with CSS itself.
--
Dave Anderson, hoping Roland is reading

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 28 '05 #20
I usually do wind up using tables when I'm trying to avoid doing so. I
can't use a DIV in place of where I want a span with a width, because I'm
wanting an inline element with a width specified. Like:

<style type="text/css">
div.tabs span { width: 200px; border: 1px solid #000000; }
</style>

<div class="tabs">
<span>Tab 1</span>
<span>Tab 2</span>
<span>This is Tab #3</span>
</div>

Since the width won't be honored in strict browsers, I do wind up throwing
it in a table. (Perhaps this isn't the best example.) Again, though,
there's nothing wrong with tables. It's just kinda, uh, fun to try to not
use them.

Ray at work
"Aaron Bertrand [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:u4**************@TK2MSFTNGP10.phx.gbl...
I understand why the span doesn't have a width, but I disagree with it.


If it's a <div> then use a <div>. A span is contained within another
element that has some kind of defined width. If you need to define widths
inside that way, then as much as I hate to suggest it, I would say use a
table instead (or the very complex kind of CSS that properly replicates a
table, but in a much more cumbersome fashion).

Jul 28 '05 #21
Adrienne wrote:
table {margin-left:auto; margin-right:auto; width:whatever} /*
centers the ~table~ in the viewport*/


Unless you use a STRICT doctype, Internet Explorer *still* will not center a
table with "auto" margins unless its container has a text-align:center
attribute. Fortunately, IE will let you put this on BODY or HTML.
Unfortunately, IE does some funny inheritance stuff if you do.
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 28 '05 #22
Ray Costanzo [MVP] wrote:
I usually do wind up using tables when I'm trying to avoid
doing so. I can't use a DIV in place of where I want a span
with a width, because I'm wanting an inline element with a
width specified. Like:

<style type="text/css">
div.tabs span { width: 200px; border: 1px solid #000000; }
</style>

<div class="tabs">
<span>Tab 1</span>
<span>Tab 2</span>
<span>This is Tab #3</span>
</div>

Since the width won't be honored in strict browsers, I do
wind up throwing it in a table. (Perhaps this isn't the best
example.) Again, though, there's nothing wrong with tables.
It's just kinda, uh, fun to try to not use them.


I agree that this isn't a great example, since you could certainly use DIV
elements instead of SPAN here:

<style type="text/css">
div.tabs div { width:200px; float:left; ... }
</style>

<div class="tabs">
<div>Tab 1</div>
<div>Tab 2</div>
<div>This is Tab #3</div>
</div>

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 28 '05 #23
I'm not a "blame Microsoft for everything" kind of guy. They are absolutely
at fault for some things though. But I'm not speaking of that. I'm
speaking of what I don't like about strict CSS. I dislike IE for honoring
something like <span style="width: 200px;">, but at the same time, I curse
the W3C for not making that a standard. So, in this case, my frustration is
with CSS.

Ray at work

"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:11************@corp.supernews.com...
This is perhaps my single biggest gripe with Internet Explorer's stagnation. There are many CSS features already implemented in other browsers that IE
still does not understand. And that effectively renders them nonexistent
unless authors are willing to ignore IE users.

The blame for your frustration regarding CSS, then, lies squarely with
Microsoft, not with CSS itself.

Jul 28 '05 #24
NICE!

Ray at work

"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:11*************@corp.supernews.com...

I agree that this isn't a great example, since you could certainly use DIV
elements instead of SPAN here:

<style type="text/css">
div.tabs div { width:200px; float:left; ... }
</style>

<div class="tabs">
<div>Tab 1</div>
<div>Tab 2</div>
<div>This is Tab #3</div>
</div>

Jul 28 '05 #25
Ray Costanzo [MVP] wrote:
I dislike IE for honoring something like <span style="width:
200px;">, but at the same time, I curse the W3C for not
making that a standard.
The W3C actually *does* make it a standard. You can put a width attribute on
a SPAN as long as its display attribute is "block". And honestly, width
doesn't make sense unless it's a block element, does it?
So, in this case, my frustration is with CSS.


Not so fast, Ray! CSS isn't the problem.
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 28 '05 #26
Gazing into my crystal ball I observed "Dave Anderson"
<GT**********@spammotel.com> writing in
news:11*************@corp.supernews.com:
Ray Costanzo [MVP] wrote:
I usually do wind up using tables when I'm trying to avoid
doing so. I can't use a DIV in place of where I want a span
with a width, because I'm wanting an inline element with a
width specified. Like:

<style type="text/css">
div.tabs span { width: 200px; border: 1px solid #000000; } </style>

<div class="tabs">
<span>Tab 1</span>
<span>Tab 2</span>
<span>This is Tab #3</span> </div>

Since the width won't be honored in strict browsers, I do
wind up throwing it in a table. (Perhaps this isn't the best
example.) Again, though, there's nothing wrong with tables.
It's just kinda, uh, fun to try to not use them.


I agree that this isn't a great example, since you could certainly use
DIV elements instead of SPAN here:

<style type="text/css">
div.tabs div { width:200px; float:left; ... }
</style>

<div class="tabs">
<div>Tab 1</div>
<div>Tab 2</div>
<div>This is Tab #3</div>
</div>


I think a lot of people get unhappy with CSS because they are not using
semantic markup in the first place. That's how we wound up with tag soup
in the beginning, and now we have CSS soup instead.

If you use markup that pertains to the structure of a document, there
aren't that many places to go wrong. The example above looks like a list,
so I would use list markup and style the elements accordingly, eg:

ul {border:1px solid #000; list-style-type:none; padding:1em;}
ul li {width:200px; float:left; text-align:center; border-right:1px solid
#c0c0c0;}

<ul>
<li>Apples</li>
<li>Oranges</li>
<li style="border:0">Grapes</li>
</ul>

and you would come up with something like:
Apples | Oranges | Grapes

Of course my favorite use of CSS is to produce GreenBar tables where I have
a colora and colorb classes defined in an external stylesheet, and this
markup:
<% if counter mod 2 = 0 then
theclass = "colora"
else
theclass = "colorb"
end if
%>
<tr class="<%=theclass%>">
<td>data</td>
</tr>
<% 'continue loop and update counter %>

external sheet:
..colora {background-color:#fff; color:#000;}
..colorb {background-color:#f0fff0; color:#000;}

What's so great about that is consistency for the entire site. If I want
to change it to blue bar, I just need to change the colora and colorb
classes in the external sheet, and voila! the whole site is changed.
--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 28 '05 #27
Gazing into my crystal ball I observed "Dave Anderson"
<GT**********@spammotel.com> writing in
news:11*************@corp.supernews.com:
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per
message. Use of this email address implies consent to these terms.
Please do not contact me directly or ask me to contact you directly for
assistance. If your question is worth asking, it's worth posting.


Dave, I love that signature. Do you mind if I borrow it, and change it
slightly, maybe charge less, say $300?

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 28 '05 #28
>> I'm not a "blame Microsoft for everything" kind of guy.
Few of us are. But, who else would you blame for IE being 5+ years old, and
severely out of touch?
I curse the W3C for not making that a standard. Why should the W3C necessarily follow IE extensions/aberrations?
Myself, I'm upset with W3C for not making <blink> standard :>).

Bob Lehmann

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:u4**************@TK2MSFTNGP10.phx.gbl...
I'm not a "blame Microsoft for everything" kind of guy. They are absolutely at fault for some things though. But I'm not speaking of that. I'm
speaking of what I don't like about strict CSS. I dislike IE for honoring
something like <span style="width: 200px;">, but at the same time, I curse
the W3C for not making that a standard. So, in this case, my frustration is with CSS.

Ray at work

"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:11************@corp.supernews.com...
This is perhaps my single biggest gripe with Internet Explorer's

stagnation.
There are many CSS features already implemented in other browsers that

IE still does not understand. And that effectively renders them nonexistent
unless authors are willing to ignore IE users.

The blame for your frustration regarding CSS, then, lies squarely with
Microsoft, not with CSS itself.


Jul 29 '05 #29
Adrienne wrote:
Dave, I love that signature. Do you mind if I borrow it,
and change it slightly, maybe charge less, say $300?


I don't mind in the least. One of my best friends is a lawyer, and he thinks
I have grounds to collect, as I have always used this address (which is
legitimate) with the disclaimer. Maybe one day, I will test the legal
waters.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 29 '05 #30
Just make sure that you only go after the people who sent you the
unsolicited e-mail that you actually ~read~ though. :]

Ray at work

"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:11*************@corp.supernews.com...
Adrienne wrote:
Dave, I love that signature. Do you mind if I borrow it,
and change it slightly, maybe charge less, say $300?
I don't mind in the least. One of my best friends is a lawyer, and he

thinks I have grounds to collect, as I have always used this address (which is
legitimate) with the disclaimer. Maybe one day, I will test the legal
waters.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use of this email address implies consent to these terms. Please do not contact me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Jul 29 '05 #31

"Chris Hohmann" <no****@thankyou.com> wrote in message
news:ux**************@TK2MSFTNGP09.phx.gbl...
[snip tirade about IE CSS support]
Hopefully the powers that be are listening. :)


Looks like they were listening.
http://blogs.msdn.com/ie/archive/2005/07/29/445242.aspx

Okay, if you guys are still listening, I'd also like a pound of $20's.
Aug 1 '05 #32

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Steve Speirs | last post by:
Hi I'm trying to show/hide a simple piece of text and a text field on a form based on what choice is made from a drop down box. <select name="dropdown" size="1"> <option selected...
4
by: frogman042 | last post by:
My daughter is playing around trying to learn JavaScript and she wrote a small program that prints out a message in increasing and decreasing font size and color changes. She is using document...
5
by: RICHARD BROMBERG | last post by:
I am using MS Access 2000 and crating an application where the main table has about 90 fields. I understand how to run a where the value of a PARTICULAR field is entered into a text box. I want...
2
by: Corepaul | last post by:
As input is typed into a text box, I would like to search a recordset for the first record that matches what has been typed so far. I would like to update the text box to display the letters typed...
5
by: Cro | last post by:
Hello Access Developers, I'd like to know if it is possible to perform a count in an expression that defines a control source. My report is based on a query. In my report, I want a text box to...
14
by: Norm | last post by:
Hi, Each time the user selects an item from a combobox, I want that string to get appended to the values that were already selected. The result is that the combo is accumulating text each time...
8
by: Lyn | last post by:
Hi, Can anyone tell me how the initial value displayed in Combo Box is determined when a form is opened? I am loading the dropdown from one field ("CategoryName") of a table, with "ORDER BY ". ...
1
by: Darsin | last post by:
What i am doing is to pull the data from a CMS and import it to Word 2007 Beta and i also have to export the data from Word 2007 Beta back to that CMS. We have with us two Web Services of the CMS....
16
by: mj.redfox.mj | last post by:
Can anyone help? I have a textbox which I'm programatically adding by using the following code: txtTest = New TextBox txtTest.ID = "txtLeft" + cntCount.ToString...
1
by: littlealex | last post by:
IE6 not displaying text correctly - IE 7 & Firefox 3 are fine! Need some help with this as fairly new to CSS! In IE6 the text for the following page doesn't display properly - rather than being...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.