The problem here is that VB script is always uncompiled so anyone can view the source.
You could do something like:
Quote:
Dim StopWorking
StopWorking = "01/06/2005"
Dated = Datetime.Now()
If StopWorking <= Dated Then
Response.Write "Trial Expired!"
End If
|
Or something like that anyway (VB skills are not that good) but even then you'd still be able to look at the code and change the date.