When using the WorkflowGen file upload, you can display a link to the uploaded file but not allow the user to modify or delete the file. To do this, add the following line of code in your C# project:
WorkflowFileUpload1.ReadOnly = true;
This could be added to a section of code that checks for a specific WorkflowGen action.
C#
protected void Page_Load(object sender, EventArgs e){
switch(this.CurrentWorkflowActionName){
case INITIATES:
//write code here
break;
case SECOND_ACTION:
//set fileupload Workflow
FileUpload1.ReadOnly = true;
break;
}
}
VB
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Select Case(Me.CurrentWorkflowActionName)
Case INITIATES
'write code here
Case SECOND_ACTION
'fileupload
WorkflowFileUpload1.ReadOnly = true
End Select
End Sub