Trying to make a working example from the online documentation at https://www.igniteui.com/file-upload/aspnet-mvc-helper I've run into some hiccups, maybe someone can help me get past it:
View: (Answer in comments).
.ProgressUrl(Url.Content("~/IGUploadStatusHandler.ashx"))
Is there a code sample for this .ashx file?
Controller:
UploadConfig.DeleteFile(sender, args);
Is there a code sample for UploadConfig?
Or is there a better place to look for working samples?
Reference: www.igniteui.com/.../aspnet-mvc-helper
Re: .ProgressUrl(Url.Content("~/IGUploadStatusHandler.ashx"))Source: www.infragistics.com/.../example-of-iguploadstatushandler-ashx
That url ( http://igniteui.com/IGUploadStatusHandler.ashx ) is handled by a HTTP handler that comes as part of the Infragistics.Web.MVC dll . In order to use it in your own application you would need to register that handler in your config file. For example:
<httpHandlers>
<add verb="GET" type="Infragistics.Web.Mvc.UploadStatusHandler"
path="IGUploadStatusHandler.ashx" />
</httpHandlers>
The same conclusion applied to me. Again, I appreciate your reply. 1v1 lol