I have successfully upload video save in server and database in .net core mvc. But I have face an issue video are not playing in webbrowser(All Browser). It's my HTML code
- @foreach (var item in Model.lst_MainCategoriesData)
- {
- <tr class="Search">
- <td>@{ Srno++; } @Srno </td>
- <td>
- <div class="video-frame">
- <video id="videoplayer" controls width="200" height="140"
- src="@Url.Content("http:
- @*Url.Content("~/ControllerName/ActionName/" + x);*@
- </div>
- </td>
- <td>@Html.DisplayFor(x => item.CategoryName)</td>
- <td>
- @*<button id="@item.CategoryId" class="btn btn-danger btndelete"><i class="fa fa-trash"></i> Delete</button>*@
- <button type="submit" class="btn btn-danger btndelete" onclick="confirmDelete(@item.CategoryId)" id="@item.CategoryId"><i class="fa fa-trash"></i> Delete</button>
- </td>
- </tr>
- }