I currently use the code below in a html file. The idea is to select a file from a directory, with directory based on a year and file based on a month. The directory and file are numbers.
<script language="JavaScript">
getyear()
getmonth()
</script>
<script language="vb">
Let var $year = getyear()
Let var $month = getmonth()
Let var $calendar = "$year"+"/"+"$month"
<link href ="/Calendar/$calendar.html">
</script>
The problem is this code does not work. Does anyone have a suggestion to correct it?
Thanks
Michael
<script language="JavaScript">
getyear()
getmonth()
</script>
<script language="vb">
Let var $year = getyear()
Let var $month = getmonth()
Let var $calendar = "$year"+"/"+"$month"
<link href ="/Calendar/$calendar.html">
</script>
The problem is this code does not work. Does anyone have a suggestion to correct it?
Thanks
Michael