Hi,
I am not sure if you are using Classic ASP or ASP.NET. Classic ASP were widely used before ASP.NET was introduced in 2002. While ASP.NET is meant to replace Classic ASP, these two are very different. Our control is for ASP.NET, not Classic ASP.
If you do mean ASP.NET, then the best way for you start with is probably to try with a standard TextBox control first and get that working. That will help you understand what our DatePicker does and what it does not do.
When you use a textbox, user will enter a date into that textbox. When the page posts back (for example, when user clicks "Save" button), your server side code is fired and you would use something like TextBox1.Text to retrieve whatever use entered and then save it to your database with whatever SQL statement you may use.
DatePicker works very similar, it's basically an advanced textbox for you that will only allow you to enter date, and also provide you a drop down so that user can pick a date directly. Just like a textbox, you will need other controls to submit the page and additional code to write whatever user has entered (in this case a date) into your database. For DatePicker, you will need to use SelectedDate property instead of Text property (so the code will be something like DatePicker1.SelectedDate instead of TextBox.Text). Another thing that is also different is SelectedDate property is a DateTime object, where as Text is a String object.
Our online documentation contains guides about how to customize the DatePicker and complete reference about the control:
http://doc.essentialobjects.com/library/1/calendar/overview.aspxhttp://doc.essentialobjects.com/library/1/eo.web.datepicker.aspxPlease keep in mind that if you are not familiar with general ASP.NET programming, you may want to familiar yourself with that first. Otherwise we maybe get the product working for you, but we may not be able to help you if you run into any problems. Our support doesn’t troubleshoot user code error.
Hope this helps.
Thanks!