Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.
-
faiz2000 #1
Show region if recordset is not empty
Hi?
How can I make server behavior for this?:
If Diet field empty in the food table,Don?t display Diet word in the Page
<% If Not Food.EOF Or Not Food.BOF Then %>
<font color="#FF0000" face="Tahoma, Verdana">Diet</font>
<% End If ' %>
Please your help ASAP
faiz2000 Guest
-
Recordset Filter question - Nested repeat region
Hi, I am using Tom Steepers Tutorial to nest a recordset found here.... http://www.dmxzone.com/ShowDetail.asp?NewsId=394 Does anyone know... -
Show Region & ASP.NET forms
Using ASP.NET VB. I have a form generated through the insert record wizard. It works OK, but I want to prevent users from submitting the form... -
Show if recordset is empty??
Hi, I have a results page with two result boxes and am trying to add 'Show if recordset is empty' for obvious reasons. BUT i've highlighted text... -
ASP.NET C# - Show Region if NOT Empty Value in Field
Using MS SQL Server 2K; DW MX2004 I have a phone list stored procedure that returns all of the data I need. The problem is that for a lot of... -
Set an Empty Recordset?
You could throw in a rsQuery.Movelast Sometimes what I'll do in testing is: CONST TRAP_STOP = 10 DIM TRAP_COUNT TRAP_COUNT = 1 -
Joe Makowiec #2
Re: Show region if recordset is not empty
On 04 Sep 2005 in macromedia.exchange.extensions.dreamweaver, faiz2000
wrote:
That would work for a recordset, and you can access it in the Server> If Diet field empty in the food table,Don?t display Diet word in
> the Page
>
> <% If Not Food.EOF Or Not Food.BOF Then %>
> <font color="#FF0000" face="Tahoma,
> Verdana">Diet</font> <% End If ' %>
>
> Please your help ASAP
Behaviors panel. Highlight the dynamic text, click the '+' button, and
select 'show if not empty'.
However, if you mean an individual field in a record in a recordset,
something like:
Record1 xyzzy diet
Record2 shazam diet
Record3 yabba
Record4 please diet
then you need to do something like this:
<% IF (recordset1.Fields.Item("Diet").Value <> "") THEN
' what to do if Diet exists goes here
ELSE
' what to do if no Diet
END IF %>
--
Joe Makowiec
[url]http://makowiec.net/[/url]
Email: [url]http://makowiec.net/email.php[/url]
Joe Makowiec Guest



Reply With Quote

