This is more related to web problem...
Basically I have this 'javascript password' function, and people who are smart know how to bypass this password function and get into the blog, and 'view source', tada, pw is out.
So basically I thought of 2 ways to tackle this solution...
1st, I decide to encrypt the 'javascript password' HTML code, so he view source also cannot see the passwrod.
Tried on blogger, it worked.
2nd, I decide to have a code that redirects someone who have javascript turned off to other webpage.
I used this code:
code:
<br /><!--<br />/* Created by: Will Bontrager :: http://www.willmaster.com/ */<br /><br /><noscript><br /><meta http-equiv="refresh" content="0; URL=http://www.yahoo.com/"><br /></noscript><br />//--><br />
but cannot work =(. Anyone know whats wrong with the code???
Smth I just thought off, if i disabled javascript already, how could the code above work??? then can anyone give me some codes that can redirect the users after detecting they do not have javascript?