How to make a UDP call in Classic ASP?

SeanieMerriman

New Member
In PHP you can make a UDP call like this (from the documentation): \[code\]<?php$fp = fsockopen("udp://127.0.0.1", 13, $errno, $errstr);if (!$fp) { echo "ERROR: $errno - $errstr<br />\n";} else { fwrite($fp, "\n"); echo fread($fp, 26); fclose($fp);}?>\[/code\]Is it possible to make a UDP call in Classic ASP? If so, what is the best way of doing it?
 
Back
Top