Show region if recordset is not empty

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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
  3. #2

    Default Re: Show region if recordset is not empty

    On 04 Sep 2005 in macromedia.exchange.extensions.dreamweaver, faiz2000
    wrote:
    > 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
    That would work for a recordset, and you can access it in the Server
    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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139