Maximus007
Technical User
I have an input box where the user enters his/her email address. If this user doesn't close that web browser! How can I prevent them from typing over their e-mail address again? Isn't there a way if they've used it before and wants the use it again all they have to do is double click and their email address should appear? Is it through the cookies if it. how can get it to work. I tried and had no success.
code:
<%
Dim strEmail
strEmail = request.Cookies("prefs")("Email")
Response.Cookies("Email").Expires = "Jan 1, 2010"
%>
<input type="text" name="Email" size="32" value="<%=strEmail%>">
code:
<%
Dim strEmail
strEmail = request.Cookies("prefs")("Email")
Response.Cookies("Email").Expires = "Jan 1, 2010"
%>
<input type="text" name="Email" size="32" value="<%=strEmail%>">