i want to delete record using ajax call but im getting error method not allowed. 405 error.
code
HTML
JavaScript
x
2
1
<button class="btn btn-danger" onclick="DeleteTrip(@item.TripId)">Delete</button>
2
JS
JavaScript
1
15
15
1
var DeleteTrip = function (TripId) {
2
3
var ans = confirm("Do you want to delete item with Item Id: " + TripId);
4
5
if (ans) {
6
$.ajax({
7
type: "POST",
8
url: "/TripsReport/Delete/" + TripId,
9
success: function () {
10
window.location.href = "/TripsReport/Index";
11
}
12
})
13
}
14
}
15
c# code
JavaScript
1
7
1
[HttpPost]
2
public IActionResult Delete(int id)
3
{
4
tripsService.DeleteTrips(id);
5
return RedirectToAction("Index");
6
}
7
Advertisement
Answer
I test my code,and I find HTTPDelete and HttpPost can work.
Here is a demo for HTTPDelete:
View:
JavaScript
1
25
25
1
<button class="btn btn-danger" onclick="DeleteTrip(1)">Delete</button>
2
3
@section scripts{
4
5
<script>
6
function DeleteTrip (TripId) {
7
8
var ans = confirm("Do you want to delete item with Item Id: " + TripId);
9
10
if (ans) {
11
$.ajax({
12
type: "DELETE",
13
url: "/TripsReport/Delete",
14
data: {
15
id: TripId
16
},
17
success: function (data) {
18
window.location.href = "/TripsReport/Index";
19
}
20
})
21
}
22
}
23
</script>
24
}
25
controller:
JavaScript
1
6
1
[HttpDelete]
2
public IActionResult Delete(int id)
3
{
4
return Ok();
5
}
6
Here is a demo for HTTPPost:
View:
JavaScript
1
25
25
1
<button class="btn btn-danger" onclick="DeleteTrip(1)">Delete</button>
2
3
@section scripts{
4
5
<script>
6
function DeleteTrip (TripId) {
7
8
var ans = confirm("Do you want to delete item with Item Id: " + TripId);
9
10
if (ans) {
11
$.ajax({
12
type: "POST",
13
url: "/TripsReport/Delete",
14
data: {
15
id: TripId
16
},
17
success: function (data) {
18
window.location.href = "/TripsReport/Index";
19
}
20
})
21
}
22
}
23
</script>
24
}
25
controller:
JavaScript
1
6
1
[HttpPost]
2
public IActionResult Delete(int id)
3
{
4
return Ok();
5
}
6