Use the 1rst free component for ASP to create dynamic CAPTCHA and protect your site online bots spammers.

DypsAntiSpam is a free ASP component aimed to protect your website from online bots spammers.

Download Products


DypsWebCapture : Capture Web page as thumbnail image

Documentation
Example
Download
Buy

New release with embed IE and Firefox rendering engine !



DypsFTP : Manage a FTP site from your script

Documentation
Buy


DypsImg2SWF : Protect and save your image as SWF/Flash format!

Documentation
Example
Download
Buy


DypsXLS for ASP: Générateur de fichier Excel

New features!
Documentation
Exemple d'utilisation
Download
Buy


DypsMetaGrabber : get Meta Tag from any web page!

Documentation
Example
Download
Buy


DypsAntiSpam for ASP

Features
Exemple d'utilisation
Download
Buy

DypsoPRank for ASP

Features
Exemple d'utilisation
Download
Buy

Pop3 Checker for ASP

Features
Exemple d'utilisation
Download
Buy

SVG Pie chart Maker for ASP

Features
Exemple d'utilisation
Download

DypsRTF for ASP

Features
Exemple d'utilisation
Download
Buy

What's New ?


Mise en ligne du premier outil gratuit pour générer des fichiers Excel depuis ASP : DypsXLS !
[Lire la suite]

Et un forum Le site se dote d'un forum pour vous permettre de partager toujours plus.
[Rejoigner nous]

Annuaire de scripts ! Un annuaire de scripts et de liens utiles vers des ressources pour le développement
[Lire la suite]

Création d'un outil gratuit pour retrouver ses mails : Pop3 Checker for free !
[Lire la suite]

Création d'un outil gratuit pour générer des graphiques vectoriels à la volée: Free SVG Pie chart Maker !
[Lire la suite]

A free component to create Excel files on the fly

Techniques

This section makes it possible to gather a whole of techniques or scripts which have the originality to manage to solve a difficulty with the least effort or which are particularly effective...The grayed entries relate to the future headings which will supplement soon this toolbox.


Techniques / Composants Security : DypsAntiSpam Download DypsAntiSpam for free!
Please visit also our sponsor


  •  How to prevent automatic submission with DypsAntiSpam :


<See object reference for DypsAntiSpam> Previous Page


This short example will help you to to prevent automatic submission with DypsAntiSpam.

This example is based on two ASP page :

  1. the first one containing a form and an input where the user can write the code displayed by DypsAntiSpam,
  2. the second one will generate the image CAPTCHA and store the random string the user must provide to access to a protected web page or submit is data to your forum...

		   

'This first page will display a form
<html>
<body>

<%

if request.Form("code") <> "" Then
 response.write "Data stored in your session object : <b>"&_
 	 session("p") & "</b><br>"
 response.write "And here what you get from the form : <b>"&_
 	 request.Form("code") & "</b><br>"
end if
if session("p") = request.Form("code") _
	 and len(session("p"))>0 then 
	response.redirect "restricted_place.asp"
end if

%>
<br>
 	
Type the code you see in the picture behind.
<form method="POST">
<img src='antispam.asp' >
	<input name='code' width='145' height='20'>
	
	<input type='submit'>
</form>
</body>
</html>	

As you have notice the first page will include an IMG tag and the source file is "antispam.asp". This file will generate the image to display. Here is its content :

	
<%
'Create the Challenger object
set antisp = server.createObject("DypsAntiSpam.challenger")

'Create random string and store it
'in a sessions variable
session("p") = antisp.getRandomString

'Generate image !
antisp.genImage

'That's it!
set antisp = nothing

%>


<See object reference for DypsAntiSpam> Previous Page


You could now ask for support by using the forum.