I have a details view in an aspx page that contains the RadUpload control. This is all encased in a RadWindow that pops up when a user clicks the edit link of a record in a RadGrid control. When I specify a file to upload and submit the form I'm given a Bad Request (Invalid Verb) HTTP Error 400 page instead of it going back to the main window with the RadGrid, as it should. This error doesn't occur if I don't specify a file to upload. I'm not sure what the cause of this problem is, any help is appreciated. I've included the piece of markup that includes my RadUpload control. Let me know if more is needed.
UPDATE:
I notice that this error only seems to occur on my development machine. Tried this on my test server and it works, wondering if there's some setting in IIS that's causing this. But, again, this only seems to occur when I try to upload a file in my edit window.
<
asp:TemplateField
HeaderText
=
"Upload Additional File"
HeaderStyle-VerticalAlign
=
"Top"
ItemStyle-VerticalAlign
=
"Top"
>
<
ItemTemplate
>
<
telerik:RadProgressManager
ID
=
"RadProgressManager1"
runat
=
"server"
Skin
=
"Vista"
Height
=
"16px"
Width
=
"500px"
/>
<
telerik:RadUpload
ID
=
"RadUpload1"
runat
=
"server"
MaxFileInputsCount
=
"1"
MaxFileSize
=
"5242880"
InputSize
=
"60"
Width
=
"450px"
ControlObjectsVisibility
=
"None"
ToolTip
=
"Select file to attach to ticket (max filesize: 5MB)"
/>
</
ItemTemplate
>
</
asp:TemplateField
>
UPDATE:
I notice that this error only seems to occur on my development machine. Tried this on my test server and it works, wondering if there's some setting in IIS that's causing this. But, again, this only seems to occur when I try to upload a file in my edit window.