Been looking this up. Was using IE before and understand the full path was not secure. I am using C# on Asp. Net Core (I am very new to this). I need to get the file (which will be a zip file) and iterate through the zip file for it's contents. However on Chrome and Edge the value returned from a Input type file is just the file name, so I am stuck on what I can do to iterate through the inputted file. Any help is appreciated.
To help I am just using simple form:
<form method="post">
<input type="file" name="varName">
<input type="submit">
</form>