protected void ASPxFileUploadComplete(object sender, DevExpress.Web.ASPxUploadControl.FileUploadCompleteEventArgs e)
{
string strFilePath = "/";
string strFileInfo = strFilePath + strFilename;
if (e.UploadedFile.IsValid)
{
try
{
e.UploadedFile.SaveAs(strFileInfo);
}
catch (Exception ex)
{
string strErr = ex.Message.ToString();
throw;
}
}
}
Description 이 알기 쉽게 설명되어 있음.
{
string strFilePath = "/";
string strFileInfo = strFilePath + strFilename;
if (e.UploadedFile.IsValid)
{
try
{
e.UploadedFile.SaveAs(strFileInfo);
}
catch (Exception ex)
{
string strErr = ex.Message.ToString();
throw;
}
}
}
Description 이 알기 쉽게 설명되어 있음.