31 lines
928 B
Plaintext
31 lines
928 B
Plaintext
@model AddressValidationModel
|
|
|
|
<script asp-location="Footer">
|
|
$(function() {
|
|
@if (Model.IsError)
|
|
{
|
|
<text>alert('@Model.Message');</text>
|
|
}
|
|
else
|
|
{
|
|
<text>
|
|
var customerConfirmation = confirm('@Model.Message');
|
|
if (customerConfirmation) {
|
|
var postData = {
|
|
addressId: '@Model.AddressId',
|
|
isNewAddress: '@Model.IsNewAddress'
|
|
};
|
|
addAntiForgeryToken(postData);
|
|
|
|
$.ajax({
|
|
cache: false,
|
|
type: 'POST',
|
|
url: '@Url.Action("UseValidatedAddress", "AddressValidation")',
|
|
data: postData,
|
|
dataType: 'json'
|
|
});
|
|
}
|
|
</text>
|
|
}
|
|
});
|
|
</script> |