Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <div class="col-sm-4">
  2. @Html.TextBoxFor(m => m.Data, new { type = "file", @class = "upload " })
  3. @Html.LabelFor(m => m.Data,"Upload File...", new { type = "file", @class = "btn btn-primary" })
  4. </div>
  5.  
  6. $(document).ready(function(){
  7. $("input[type='file']").change(function(){
  8. //Tu código ....
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement