
Another awesome feature is timezone detection so that everyone is on the same page. This includes Google, Salesforce, GoToMeeting, Zapier, and Outlook. The app also integrates with tools that you’re probably already using. You then share your Calendar links through email or embed it onto your website. Just simply let Calendar know your availability and it’ll do the rest for you.
#SMARTDAY CALENDAR FREE#
If you no longer want to play phone tag when scheduling an appointment then this free app will make that a problem of the past.


OAgenda_Temp.AgendaID = Agenda_TempDAL.AddAgenda_Temp(oAgenda_Temp) 'Within the object Agenda_Temp class use the defined DAL which includes all the DC connect and stored procedures. AgendaDate = New SmartDate(txtAgendaDate.Text)
#SMARTDAY CALENDAR CODE#
'They are required to be defined in the Agenda_Temp/ app code so we can use them within here. 'Within the object Agenda_Temp Class use the properties defined. 'This works alongside the Class named Agenda_Temp which has the properties and DB connection assigned to it for each web form field. Protected Sub btnAddAgendaTemplate_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAddAgendaTemplate.Click The problem lies on this line.AgendaDate = New SmartDate(txtAgendaDate.Text) This is the page that causes the error based on the property / field. 'Need to return the agendaID as an integer.Īnd here is the code behind the button ion the web page. 'Create parameters for the remaining Agenda_) OParam.ParameterName = ParameterDirection.Output 'Create parameter for AgendaID and output CommandType = CommandType.StoredProcedure Using dbcommand As SqlCommand = dbconnection.CreateCommand

'Command to state the stored procedure and the name of the stored procedure Using dbconnection As New SqlConnection(ConfigurationManager.AppSettings("dbconnection")) 'Database conn, this is linked to the web config file. Public Shared Function AddAgenda_Temp(ByVal Agenda_Temp As Agenda_Temp) As Integer Here is my command that looks connects to the DB and at the stored procedure and also has the parameters. Public Property AgendaDate() As SmartDate 'Define form field properies so that they can be used when adding the data to the database on the add button is pressed. ' Public Sub New(ByVal reader As SQLDataReader) Public Sub New(ByVal reader As SafeDataReader) Private mAgendaDate As SmartDate = New SmartDate() 'Declare Variables and data types and set default values Here is my stripped down version for the code for the class and the txtAgendaDate code. The rest of the fields work and submit data to the database except the textfield for the ajax calendar. I have a class with the associated properties on it for the web form.

Here is my web form that holds the calendar and the associated text box. AgendaDate = New SmartDate(txtAgendaDate.Text) 'String value can not be converted to a date'. The problem that i have is that when i submit my form i get the following message. I have a web form that uses an Ajax date calendar.
