A set of technologies in the .NET Framework for building web applications and XML web services.
Hi @Dondon510,
You could retrieve values from HttpContext like following:
public async Task awsUploadAsync()
{
var form = await HttpContext.Request.ReadFormAsync();
// Retrieve form fields
var hostName = form["hostName"].ToString();
var accessCode = form["accessCode"].ToString();
var tifFile = form.Files["tifFile"];
}
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.