*One last edit, I fixed this by putting a web.config in my bin folder that allows anonymous users.
*Edit from original post. So I think I know the problem, I just don't know how to fix it. The root of my website is not accessible to the public, however, I have a folder within here that is. I can't get any rad controls to work within this public folder. I'm guessing it can't access files that it needs to. However, I can't rework everything into different folders at this point. Is there any way around this?
I have a date picker inside of an asp.net wizard. It is not working at all when you click the calendar. I'm doing nothing on the back end for the wizard besides binding custom headers as of right now. You can see it here http://rowe.intellicomweb.com/Customers/CustomerReservation.aspx
Here is my front end code.
*Edit from original post. So I think I know the problem, I just don't know how to fix it. The root of my website is not accessible to the public, however, I have a folder within here that is. I can't get any rad controls to work within this public folder. I'm guessing it can't access files that it needs to. However, I can't rework everything into different folders at this point. Is there any way around this?
I have a date picker inside of an asp.net wizard. It is not working at all when you click the calendar. I'm doing nothing on the back end for the wizard besides binding custom headers as of right now. You can see it here http://rowe.intellicomweb.com/Customers/CustomerReservation.aspx
Here is my front end code.
<
asp:Wizard
ID
=
"registrationWizard"
runat
=
"server"
Width
=
"95%"
DisplaySideBar
=
"false"
>
<
StartNextButtonStyle
CssClass
=
"buttonClass"
/>
<
CancelButtonStyle
CssClass
=
"buttonClass"
/>
<
NavigationButtonStyle
CssClass
=
"buttonClass"
/>
<
WizardSteps
>
<
asp:WizardStep
Title
=
"Select A Date"
StepType
=
"Start"
>
<
div
class
=
"wizardContent"
>
<
h4
>Please select a date and time</
h4
>
<
telerik:RadDatePicker
ID
=
"RadDatePicker1"
runat
=
"server"
></
telerik:RadDatePicker
>
<
telerik:RadComboBox
ID
=
"amPmDrop"
runat
=
"server"
>
<
Items
>
<
telerik:RadComboBoxItem
Value
=
"AM"
Text
=
"Morning"
/>
<
telerik:RadComboBoxItem
Value
=
"PM"
Text
=
"Evening"
/>
</
Items
>
<
CollapseAnimation
Duration
=
"3000"
Type
=
"InBounce"
/>
</
telerik:RadComboBox
>
</
div
>
</
asp:WizardStep
>
<
asp:WizardStep
Title
=
"Information"
StepType
=
"Step"
>
Information
</
asp:WizardStep
>
<
asp:WizardStep
Title
=
"Billing"
StepType
=
"Step"
>
Billing
</
asp:WizardStep
>
<
asp:WizardStep
Title
=
"Review"
StepType
=
"Finish"
>
Final
</
asp:WizardStep
>
</
WizardSteps
>
<
HeaderTemplate
>
<
ul
id
=
"wizHeader"
>
<
asp:Repeater
ID
=
"wizardHeaderRepeat"
runat
=
"server"
>
<
ItemTemplate
>
<
li
>
<
a
class="<%# GetClassForWizardStep(Container.DataItem)%>" title="<%# Eval("Name")%>"><%# Eval("Name")%></
a
>
</
li
>
</
ItemTemplate
>
</
asp:Repeater
>
</
ul
>
</
HeaderTemplate
>
</
asp:Wizard
>