Forum Moderators: open

Message Too Old, No Replies

what does this error mean

please help

         

goldjake

4:31 pm on Apr 11, 2007 (gmt 0)

10+ Year Member



If i need to download something let me know

Compiler Error Message: BC32093: 'Of' required when specifying type arguments for a generic type or method.

Line 20: <p>Current weekday:</p>
Line 21: <%
Line 22: response.Write(WeekdayName(weekday(date)))
Line 23: response.Write("<br>")
Line 24: response.Write(WeekdayName(weekday(date), true))

TheNige

8:00 pm on Apr 11, 2007 (gmt 0)

10+ Year Member



Is this ASP.Net? Or classic ASP? I think it might be tripping over the "date" variable you are passing to the function. "date" in .Net is a datatype. If you were simply trying to pass in today's date then use Now.Today, or even simply Today might work.