1

I add this tag to my asp.net page (aspx):

<obout:Calendar runat="server"
                     ShowTimeSelector="true"
                     DateFormat="MM/dd/yyyy hh:mm:ss"
                     DatePickerMode="true"
                     TextBoxId="txtDate">
</obout:Calendar>    

but i am geting this error "unrecognized tag prefix or device filter obout" what am i missing?

thanks

Luke Girvin
  • 13,221
  • 9
  • 64
  • 84
user723686
  • 265
  • 1
  • 15
  • 21

1 Answers1

0

You need to register the tag prefix "obout" by adding something along these lines to the top of your page:

<%@ Register TagPrefix="obout" Namespace="OboutInc.Calendar2" Assembly="obout_Calendar2_Net" %>

See the documentation here.

Luke Girvin
  • 13,221
  • 9
  • 64
  • 84