im using SQL server 2000 and am trying to connect to a FTP site using the ftp task in DTS. i am able to connect to the FTP site using smartFTP, but within DTS i am having no success. i get the error "unable to connect to the internet" when i try to connect to the ftp server within the dts...
i am validating an input field and would like to clear the field if the user typed an invalid character.
function validateTotal(thevalue){
if(thevalue.length >= 1)
{
if (isNaN(thevalue) || thevalue <= 0) {
alert(thevalue + ' is not a valid number!');
}
}
}
-- my field names are...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.