enzobanzai
Technical User
Hi
Im developing the a site in ASP VB Script with Access and I am doing some Conditional regions.
Have any of you done these before and if so have you ever came accross problems with conditional regions and Access Memo fields.
For example I have a few conditional regions in this page which displays that papers specs only if there is a entry in the DB for that spec. (eg no colour variations then you wont see that heading on the page)
This all works fine but it wont WORK WITH MEMO FIELDS!!!!!
As you can see it hides the description and heading "Description" if there is no entry but if there is an entry then it displays the heading but not the description itself. (As in the Ace Screenboard paper, this has a descritpion in the database but it wont dislpay online)
I have tested this thousands of time with no luck.
Have any of you ever had to do this before.
Heres and example of the Description Condtional region:
<% if rsProdList.Fields.Item("memProdDescription").Value <>"" then ' Adv Conditional Region %>
<strong>Description:</strong> <%=(rsProdList.Fields.Item("memProdDescription").Value)%><br />
<br />
<% end if ' rsProdList.Fields.Item("memProdDescription").Value <>"" %>
Cheers
Dave
Im developing the a site in ASP VB Script with Access and I am doing some Conditional regions.
Have any of you done these before and if so have you ever came accross problems with conditional regions and Access Memo fields.
For example I have a few conditional regions in this page which displays that papers specs only if there is a entry in the DB for that spec. (eg no colour variations then you wont see that heading on the page)
This all works fine but it wont WORK WITH MEMO FIELDS!!!!!
As you can see it hides the description and heading "Description" if there is no entry but if there is an entry then it displays the heading but not the description itself. (As in the Ace Screenboard paper, this has a descritpion in the database but it wont dislpay online)
I have tested this thousands of time with no luck.
Have any of you ever had to do this before.
Heres and example of the Description Condtional region:
<% if rsProdList.Fields.Item("memProdDescription").Value <>"" then ' Adv Conditional Region %>
<strong>Description:</strong> <%=(rsProdList.Fields.Item("memProdDescription").Value)%><br />
<br />
<% end if ' rsProdList.Fields.Item("memProdDescription").Value <>"" %>
Cheers
Dave