This commit is contained in:
2022-11-15 16:31:14 +00:00
parent 1a4d8c3428
commit 9ba5d027c7

View File

@@ -36,7 +36,7 @@ namespace contact.Pages
public class RequestModel : PageModel public class RequestModel : PageModel
{ {
// public string DataCenter { get; set; } // public string DataCenter { get; set; }
[BindProperty(SupportsGet = true)] [BindProperty(SupportsGet = true)]
public RequestFormModel SubRequest { get; set; } public RequestFormModel SubRequest { get; set; }
@@ -49,7 +49,9 @@ namespace contact.Pages
new SelectListItem { Value = "LON", Text = "London" }, new SelectListItem { Value = "LON", Text = "London" },
new SelectListItem { Value = "FFT", Text = "Frankfurt" }, new SelectListItem { Value = "FFT", Text = "Frankfurt" },
new SelectListItem { Value = "SNG", Text = "Singapore" }, new SelectListItem { Value = "SNG", Text = "Singapore" },
new SelectListItem { Value = "BNG", Text = "Bangalore" } new SelectListItem { Value = "BNG", Text = "Bangalore" },
new SelectListItem { Value = "SYD", Text = "Sydney Australia" }
}; };
private readonly IConfiguration _configuration; private readonly IConfiguration _configuration;