473,396 Members | 1,879 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

email protection

Hello, is there a validation script that users cannot fill in there email?
so that they cannot use @ . So what i need is that they cannot fill in an
email, and if they do there will be a popup

Jeroen
Jul 20 '05 #1
6 3575
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
Hello, is there a validation script that users cannot fill in there
email? so that they cannot use @ . So what i need is that they cannot
fill in an email, and if they do there will be a popup

Jeroen


Het is niet erg duidelijk wat je precies wil.
Misschien kan je het beter in het Nederlands vertellen, Jeroen?

Gaat het om een html pagina? Hoe vul je daar een email op in?
Of is dit een vraag voor een email client, zoals Outlook ?

Wat verwacht je van javascript? Clientside of serverside?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 20 '05 #2
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
Hello, is there a validation script that users cannot fill in there
email? so that they cannot use @ . So what i need is that they cannot
fill in an email, and if they do there will be a popup

Jeroen


Het is niet erg duidelijk wat je precies wil.
Misschien kan je het beter in het Nederlands vertellen, Jeroen?

Gaat het om een html pagina? Hoe vul je daar een email op in?
Of is dit een vraag voor een email client, zoals Outlook ?

Wat verwacht je van javascript? Clientside of serverside?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 20 '05 #3
Beste Evertjan,

Het is namelijk zo, ik heb een formulier, met een input veld, Ik wil een
client-side met javascript realizeren, zodat de klanten geen email adres
mogen invullen in het betreffende input veld. Als ze dan een @ gebruiken of
iets wat op een emailadres lijkt, moet het een return false geven.

Bedankt

Jeroen
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
Hello, is there a validation script that users cannot fill in there
email? so that they cannot use @ . So what i need is that they cannot
fill in an email, and if they do there will be a popup

Jeroen


Het is niet erg duidelijk wat je precies wil.
Misschien kan je het beter in het Nederlands vertellen, Jeroen?

Gaat het om een html pagina? Hoe vul je daar een email op in?
Of is dit een vraag voor een email client, zoals Outlook ?

Wat verwacht je van javascript? Clientside of serverside?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 20 '05 #4
Beste Evertjan,

Het is namelijk zo, ik heb een formulier, met een input veld, Ik wil een
client-side met javascript realizeren, zodat de klanten geen email adres
mogen invullen in het betreffende input veld. Als ze dan een @ gebruiken of
iets wat op een emailadres lijkt, moet het een return false geven.

Bedankt

Jeroen
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
Hello, is there a validation script that users cannot fill in there
email? so that they cannot use @ . So what i need is that they cannot
fill in an email, and if they do there will be a popup

Jeroen


Het is niet erg duidelijk wat je precies wil.
Misschien kan je het beter in het Nederlands vertellen, Jeroen?

Gaat het om een html pagina? Hoe vul je daar een email op in?
Of is dit een vraag voor een email client, zoals Outlook ?

Wat verwacht je van javascript? Clientside of serverside?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 20 '05 #5
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
> Hello, is there a validation script that users cannot fill in there
> email? so that they cannot use @ . So what i need is that they
> cannot fill in an email, and if they do there will be a popup
>
> Jeroen


Het is niet erg duidelijk wat je precies wil.
Misschien kan je het beter in het Nederlands vertellen, Jeroen?

Gaat het om een html pagina? Hoe vul je daar een email op in?
Of is dit een vraag voor een email client, zoals Outlook ?

Wat verwacht je van javascript? Clientside of serverside?


Het is namelijk zo, ik heb een formulier, met een input veld, Ik wil
een client-side met javascript realizeren, zodat de klanten geen email
adres mogen invullen in het betreffende input veld. Als ze dan een @
gebruiken of iets wat op een emailadres lijkt, moet het een return
false geven.


[graag onderquoten op usenet]

Lijkt mij niet zo zinvol, dan kan je dat inputveld beter weglaten, maar
goed:

<form onsubmit="return valideer()" id=f1 action="...">
<input id=ip1 name=ip1>
</form>

<script>
function valideer() {
return !/@/.test(document.forms.f1.ip1.value)
}
</script>

IE6 tested
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 20 '05 #6
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
Jeroen van vliet wrote on 10 aug 2003 in comp.lang.javascript:
> Hello, is there a validation script that users cannot fill in there
> email? so that they cannot use @ . So what i need is that they
> cannot fill in an email, and if they do there will be a popup
>
> Jeroen


Het is niet erg duidelijk wat je precies wil.
Misschien kan je het beter in het Nederlands vertellen, Jeroen?

Gaat het om een html pagina? Hoe vul je daar een email op in?
Of is dit een vraag voor een email client, zoals Outlook ?

Wat verwacht je van javascript? Clientside of serverside?


Het is namelijk zo, ik heb een formulier, met een input veld, Ik wil
een client-side met javascript realizeren, zodat de klanten geen email
adres mogen invullen in het betreffende input veld. Als ze dan een @
gebruiken of iets wat op een emailadres lijkt, moet het een return
false geven.


[graag onderquoten op usenet]

Lijkt mij niet zo zinvol, dan kan je dat inputveld beter weglaten, maar
goed:

<form onsubmit="return valideer()" id=f1 action="...">
<input id=ip1 name=ip1>
</form>

<script>
function valideer() {
return !/@/.test(document.forms.f1.ip1.value)
}
</script>

IE6 tested
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Howard | last post by:
I am currently looking at the various packages that are available for software protection. I have a particular question that I'd welcome your feedback on. Background info: I work for a company...
0
by: SoftComplete Development | last post by:
SoftComplete Development Updates EXECryptor to v. 2.1.20 Software piracy! Cracked serial numbers! Thousands of commercial products are posted on the warez sites and become available to all who...
8
by: pcchong | last post by:
what is the simplest way to put the email address on the homepage so that it is not readable by email extractor or search engine? I remember someone wrote a simple script to do that, but I can't...
7
by: Boni | last post by:
Dear all, in order to protect my assembly component from decompilation I implemented following schema: I created mixed mode C++ project wich has managed cProxy class and unmanaged cMemLoader....
9
by: John | last post by:
Hi, I would like to protect my software from copying. What are best tools for it (hardware protection is not an option), do you have some reccomendation for protection or third party software...
19
by: John | last post by:
I would like to use some third party software for copy protection, software that prevents from copy paste program to another computer (not obfuscator). I am looking for some good solution (hardware...
20
by: Paul Bromley | last post by:
Not sure if I can ask the question in this forum - please let me know if it is better elsewhere. Does anyone know of a reasonably priced good copy protection program that will protect software on...
0
by: fblake | last post by:
Brussels, Belgium and Sunnyvale, Calif., – July 2007 – Active Up today announced today that it has entered into an agreement with Commtouch® (NASDAQ:CTCH) to license Anti-Spam and...
0
by: novus | last post by:
could anyone tell me if there is anything wrong with this script we seem to be unable to make the script/eventsink work on our exchange2003 server. <SCRIPT LANGUAGE="VBScript"> Sub...
0
by: dba | last post by:
Hi folks, I would just like to share with you SQL CodeSecure, a newly released database protection and auditing tool from SqlLabs: SQL CodeSecure provides ultimate protection from unauthorized...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.