Hi Dave
I'm sorry, but I only just noticed your post. If you want support for our commercial products then it's best to e-mail us at support@enterprisedt.
Anyway, if you view the source of the
UploadControl example, you'll see the following
code:
window.onload = function() {
var uploadControl = new EdtUploadControl("MyUploadControl");
uploadControl.render();
uploadControl.onClick = function() {
this.setRemoteHost(document.getElementById("Server").value);
this.setUserName(document.getElementById("UserName").value);
this.setPassword(document.getElementById("Password").value);
this.setLogLevel("DEBUG");
this.setInitialRemoteDirectory(document.getElementById("Directory").value);
}
}
This shows that you can set the remote host as follows:
this.setRemoteHost("myhost@mydomain.com");
- Hans (EnterpriseDT)