Hi,
I'm developing a contact form in a master page. In the contact form, it's possible attach a file.
But when I define the SaveUrl in the uploadcontrol:
<ej:UploadBox ID="ubImage" runat="server" MultipleFilesSelection="true" SaveUrl="MensajeSaveFiles.ashx" RemoveUrl="RemoveFiles.ashx"
ExtensionsAllow=".jpg,.png" FileSize="10485760"
OnComplete="ubImage_Complete">
</ej:UploadBox>
The "MensajeSaveFiles.ashx" file is in root folder, but when a user is navigate in the web, and try to contact with an attach. The control always fail.
I think that it can not found the MensajeSaveFiles.ashx, but I can't define the property thereby
SaveUrl="~/MensajeSaveFiles.ashx"
Whan can I do?
Thanks