This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>File Upload example</title> | |
<link href="/Content/bootstrap.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<form action="api/Upload" method="post"> | |
<div class="form-group"> |
// boostrap 4 load modal example from docs | |
$('#modal-container').on('show.bs.modal', function (event) { | |
var button = $(event.relatedTarget); // Button that triggered the modal | |
var url = button.attr("href"); | |
var modal = $(this); | |
// note that this will replace the content of modal-content ever time the modal is opened | |
modal.find('.modal-content').load(url); | |
}); |
using System; | |
using System.Collections.Generic; | |
using StructureMap; | |
using StructureMap.Building.Interception; | |
using StructureMap.Pipeline; | |
namespace AOPStructureMap | |
{ | |
public interface IAppService | |
{ |
[ | |
{ | |
"latitude": "34° 31' 24.924", | |
"longitude": "50° 0' 20.866", | |
"province": "مرکزی", | |
"state": "آشتیان", | |
"city": "آشتیان" | |
}, | |
{ | |
"latitude": "33° 40' 29.197", |
This document now exists on the official ASP.NET core docs page.