DypsXLS est un objet ExcelWritter permettant de générer dynamiquent depuis ASP un fichier Excel à la volée. The only free Excel Component.

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]

Detect the user browser

Techniques

This category is aimed to help programmers in order to find and share helpfull techniques, source code and more stuff.


Techniques / ASP: Sniff the client browser


  •  Detect the client browser :

<%

BrowserAgent = Request.ServerVariables("HTTP_USER_AGENT")

If InStr(BrowserAgent,"MSIE") <> 0 Then
  Browser = "InternetExplorer"
Else
  Browser = "Else"
End If

If Browser = "InternetExplorer" Then
  'Put here your script for Internet Explorer
Else
  'And here your script for another Browser
End If

%>