I have a simple task...
Ive got a simple xml file with the following structure...
<addresses>
<contact>
<field id="email">
<field_value>russ@rjonesx.com</field_value>
</field>
</contact>
<contact>
<field id="email">
<field_value>another@rjonesx.com</field_value>
</field>
</contact>
</addresses>
Now I just need a simple ASP script that cycles through the "contacts" to see if an email exists. Such as...
search.asp?xml=another@rjonesx.com
if it finds the email address, it uses response.redirect("approved.html"
if not
response.redirect("register.html"
Any ideas?
Ive got a simple xml file with the following structure...
<addresses>
<contact>
<field id="email">
<field_value>russ@rjonesx.com</field_value>
</field>
</contact>
<contact>
<field id="email">
<field_value>another@rjonesx.com</field_value>
</field>
</contact>
</addresses>
Now I just need a simple ASP script that cycles through the "contacts" to see if an email exists. Such as...
search.asp?xml=another@rjonesx.com
if it finds the email address, it uses response.redirect("approved.html"
if not
response.redirect("register.html"
Any ideas?