Take a look (and set a breakpoint) in wizAppointment_ActiveStepChanged in the Code Behind of CreateAppointment.aspx. You see something like this
Select Case wizAppointment.ActiveStepIndex
Case 3 ' Time. Show number of available hours
If ValidateStep(2) Then
Dim myBookingObject As BookingObject = BookingObjectManager.GetBookingObject(Convert.ToIn t32(lstBookingObject.SelectedValue))
For i As Integer = myBookingObject.MinimumDuration To myBookingObject.MaximumDuration
lstDuration.Items.Add(New ListItem(i))
Next
End If
This code is responsible for populating a drop down with the duration. Is this the code that is not firing? What happens when you add a breakpoint?
If that's not the case, can you clearly describe in which page you're experiencing what problem? I am not 100% sure what the problem is which makes it hard to help you.
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.