Database Results - Need to change color of message text when no records exist

  • Thread starter Thread starter Karen
  • Start date Start date
K

Karen

In step 3 of 5 of the Database Results Wizard, under More
Options, a feature exists named: "Message To Display If
No Records Are Returned".

I would like the text in this message to be displayed in
red on my web page. Any ideas on how to accomplish this?

Thanks.
 
-----Original Message-----
In step 3 of 5 of the Database Results Wizard, under More
Options, a feature exists named: "Message To Display If
No Records Are Returned".

I would like the text in this message to be displayed in
red on my web page. Any ideas on how to accomplish this?

Enter:

<font color=red>No records returned.</font>

or

<span class=err>No records returned.</span>

In the latter case, you'll also need to add

<style>
..err {color: #ff0000; }
</style>

to your <head> section.

Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
Back
Top