FileUploaderBuilder.UploadUrl(JS) Method
In This Article
Specifies a target Url for the upload request. Mirrors the client-side uploadUrl option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public FileUploaderBuilder UploadUrl(
JS value
)
#Parameters
Name | Type | Description |
---|---|---|
value | JS | A Java |
#Returns
Type | Description |
---|---|
File |
A reference to this instance after the method is called. |
#Remarks
Use the new JS() expression to set the option’s value.
<script>
var myValue = ...;
</script>
@(Html.DevExtreme().FileUploader()
.UploadUrl(new JS("myValue"))
)
See Also