Hey guys, I'm working on a cookie project. Right now, I have two prompts where a user enters a password and a username (the password doesn't have to be...
I have an interface that allows the user to drag a div around the screen (a magnifier to be precise). I thought I'd encapsulate the behavior into a javascript...
How could I submit a password securely? I have a page with user and password fields. I want the password to be sent to the server secureley. How could I do...
Leviaguirre Queral Jo...
JLEVIAGU@...
Jun 2, 2003 3:33 pm
18042
You can't? You also need to buy a secure certificate from one of the certificate providers On 6/2/03 8:30 AM, "Leviaguirre Queral José Luis"...
Run an MD5 HASH on the password before submitting it. This would require that you store your password on the server in Hashed format as well. Mike -- Mike...
Hi Hassan, You mean that I just have to include the target page with the HTTPS on the submitting form? <form onSubmit='HTTPS://myurl.com/login.jsp'> I have...
Leviaguirre Queral Jo...
JLEVIAGU@...
Jun 2, 2003 3:50 pm
18046
... Yep :-) Obviously, your server has to be configured properly -- listening on port 443 for SSL connections. ... Depends. If this is a public e-commerce...
That's still not "secure". Anyone w/a packet sniffer could then create a form to spoof the login process, since the data is still in clear text. The only true...
Thanks Mike. I got the idea.- Jose.- ... De: Mike Brandonisio [mailto:mbrando@...] Enviado el: Lunes, 02 de Junio de 2003 10:41 a.m. Para:...
Leviaguirre Queral Jo...
JLEVIAGU@...
Jun 2, 2003 4:59 pm
18049
How do I implement HTTPS or where can I find information on this topic? Thanks Dan.- ... De: Dan G. Switzer, II [mailto:dswitzer@...] Enviado el: Lunes, 02...
Leviaguirre Queral Jo...
JLEVIAGU@...
Jun 2, 2003 5:06 pm
18050
Sorry for the OT post. Does anyone have recommendations for good java mailing lists? I'll take anything from beginner level all the way up. Thanks, Kevin...
Kevin Bridges
KBridges@...
Jun 2, 2003 5:10 pm
18051
... You don't "implement" it, it's a feature of your webserver software. So your server documentation would be the place to look for info on setup and...
Hi, I am still working on a photo album where I am dynamically generating a thumbnail overview of the available pictures. The thumbnails are in a frame called:...
Hi, I'm wondering if someone can preview a page that has an error on a specific line please. I cant see any errors to be honest. If anyone would like to...
RF, ... That above line should be: <a href='javascript:addpicture(\""+bigpics_array[loop]+"\")' target='_pictures'> The problem is generated from the fact that...
What Dan is saying is correct, of course, but I suspect you may have a bigger problem. You are looping, creating a series of <a> links with small pictures in...
I will look at it Peter Laws <peter.laws@...> wrote:Hi, I'm wondering if someone can preview a page that has an error on a specific line please. I cant...
Just use window.open ... Date: Thu, 29 May 2003 04:19:24 -0000 From: "munyow99" <myyap@...> Subject: showModalDialog for Netscape Navigator Hi all, I...
post the link and we all will look at it... ... ===== HTTP://SILASCO.PORT5.COM/TONES/ __________________________________ Do you Yahoo!? Yahoo! Calendar - Free...
Try this: function dumpHTML() { var dmpdoc=window.open("about:blank", "_blank").document; dmpdoc.open("text/plain"); dmpdoc.write(document.all[0].outerHTML);...
window.open doesn't do modal windows ... Here's an older article from Danny Goodman: http://developer.netscape.com/viewsource/goodman_modal/goodman_modal.html ...