
March 20th, 2003, 06:02 PM
|
|
Junior Member
|
|
Join Date: Mar 2003
Location: Norway
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Need help with vbscript
Hi !
I am working on a school project and need a little bit help;
I am using this code to display the date on my site;
<Script language = VBScript>
option explicit
Dim a,a1,b
a = WeekdayName(Weekday(date))
a1 = Left(Ucase(a),1)
b = date
document.write a1 & Mid(a,2) & " " &left(b,8) & right(b,2)
</script>
But I really need to put it in a text box, like this;
<input type="text">
Because I need it to be submitted with a form...
I would really apriciate some help..
|