Hey all,
I am trying to run an applet in my website that requires my ftp login info. When I view page source, I am able to see the default parameters, so if I put my actual ftp login info then everybody will be able to see the ftp info, which I don't want. How do I prevent them from seeing this info when they click on view page source?
Example of what is seen when viewing page source:
<applet code="appName" Archive="appName.jar" width="450" height="300">
<param name="host" value="ftp_host">
<param name="user" value="user_name">
<param name="pass" value="user_pass">
<param name="path" value="target_path">
<param name="postscript" value="url_of_script">
</applet>
Don't want all to be able to see my ftp_host, user_name/pass!