I'm working with Xml upload using ASPNET MVC Core , I get in controller the file this way:
public async Task<IActionResult> Upload(IFormFile param)
{
}
But I need to check it out before finishing the code and uploa...
I'm trying to create an XML, but I can not. I want it to have this format:
<item>
<linktext></linktext>
<etc..></etc...>
</item>
I can add an item, but when I go through the loop again, it g...