making a preview form with asp classic for customers. I have data "email field" in db.for example , there is an email address in email_field.
but I want to customers see ;
Joh**********
I could not solve this problem. Which code can I use for this ?
<%=Response.Write email_field %>
<%=Left(rs_mydb("email_field"),3)%>
<%=Replace(rs_mydb("email_field")),"","*"%>
There's no need to use replace. Instead, you can build a new string to print.