just putting <% date %> won't display anything. you'll need to use the response.write method in order to get anything to display in the browser. you can do this two ways:
<% response.write date %> is the standard form, or you can use the shorthand:
<%= date %>
slap that into a page and display it in your browser and you should see the date if your host has asp enabled. if not, then you might need to talk to your host. if it's frontpage extensions for linux, you may or may not be able to get asp, as asp on linux is expensive for your host and therefore availability of asp functionality is intermittent at best, but if your host is a windows environment - there's no reason why they shouldn't have asp turned on.
if you're just now starting to learn programming (and it sounds like you are) you might consider learning asp.net 2.0 instead, or even php. Classic ASP is becoming somewhat of a legacy language, though th
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --