A
Anne
Hi
I have data in a text file and am reading it off a CD
using DSo,with datafld etc.
There is a dropdown box containing categories and when a
particular category is selected ,data relating to that
category is displayed.
for this i am using the following:
<script>
function Search_filter()
{
sitelist.FilterColumn="Cat";
sitelist.FilterValue=oTest.value;(oTest is the
name of the dropdown box)
sitelist.FilterCriterion="=";
sitelist.Reset();
}
</script>
My question is How can i define 2 filter criteria,which
is 'category' and 'City'---as you can see in my script
there is 'cat' now i want to filter also on 'city'
TIA
Anne
I have data in a text file and am reading it off a CD
using DSo,with datafld etc.
There is a dropdown box containing categories and when a
particular category is selected ,data relating to that
category is displayed.
for this i am using the following:
<script>
function Search_filter()
{
sitelist.FilterColumn="Cat";
sitelist.FilterValue=oTest.value;(oTest is the
name of the dropdown box)
sitelist.FilterCriterion="=";
sitelist.Reset();
}
</script>
My question is How can i define 2 filter criteria,which
is 'category' and 'City'---as you can see in my script
there is 'cat' now i want to filter also on 'city'
TIA
Anne