Dypso Backoffice - Le site des ressources en lignes
Dypso Backoffice

Développement Web


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]

Traceur de Hits HTML
Notez mon site
Print friendly

Prohibit access to certain WebPage

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 / Prohibit access to certain WebPage
  •  How to filter access to certain webPage :


This tutorial is intented to learn you how it is possible to prohibit access to certain page. A technique is to check the referrer of the visitor : if he come from a page of your web site let him in, else display a default message :

	
 <%

'Specify the url or our domain
site_url = "http://dypso.free.fr"

'domain name
dom_name =Lcase(left( 
	Request.ServerVariables("HTTP_Referer"),len(site_url)))


'Check for referring URL
If dom_name <> site_url then
 		'People are not allowed to see this page
 		' they are redirected
		response.redirect "default.asp"
	
End if
		'Here write the content for people allowed
		'to access it :
		Response.Write "Welcome to this WebPage"
		
%>	
	

A question ? Use the forum !.