I am attempting to add some dynamic elements to a site I am playing with and I am using VBscript with ASP for the site. I have a block of PHP code functionality that I want to use, could someone help me convert php functionality to vbscript?
<?php
if (!isset($_GET['page'])) $page= 'accueil'; else $page= $_GET['page'];
switch($page)
{
case 'accueil': include ('accueil.htm');break;
case 'presentation': include ('presentation.htm');break;
case 'suite':include ('suite.htm');break;
case 'fin':include ('fin.htm');break;
}
?>
Thank you