Skip to main content
Tab

ASPxUploadControl.GetRandomFileName() Method

Returns a random name generated for the uploaded file.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public string GetRandomFileName()

Returns

Type Description
String

A String value representing a random file name.

Remarks

Sometimes, the uploaded file’s client name, which can be obtained via the ASPxUploadControl.FileName property, may not suit your application’s requirements. In this case, you can call the GetRandomFileName method to generate a random name for the file. The generated file name can be used when saving the file via the ASPxUploadControl.SaveAs method.

See Also