Join us this Friday for AI in Action at the Virtual Happy Hour! This free virtual event is open to all—enroll now on Academy and don’t miss out.

 

Add on with Upload File

Vote:
 

Hello,

I'm trying do a upload file in a add on but my property is null all time.

I can't find the file on QueryString as well.

[HttpPost, ValidateInput(false)]
public ActionResult Edit(FormCollection collection , HttpPostedFileBase files)
{

if (files == null)

{

// true

}

....

}

<form action="/IssueTracker/Edit" class="epi-gadgetform" method="post" enctype="multipart/form-data">

<fieldset style="float:left;">
<legend>File</legend>
<div class="editor-field">
<input type="file" name="files" id="files">
</div>
</fieldset>

<input type="submit" class="epi-button" value="Submit" />

</form>

 

Someone know why?

#78056
Dec 03, 2013 0:23
Vote:
 

What happens when you put a break point on your edit action?  Does it even hit the edit action.  Also, i think this could be returning null becuase the post is done in an ajax call if i am not mistaken. 

#78063
Dec 03, 2013 4:10
Vote:
 

I have the files null on using a debug. 

#78981
Dec 06, 2013 3:33
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.