how many InputFile components can I have in blazor
this is probably a basic question for many, but I did not find the answer I'm looking for, so here I go:
I've decided to use, based on some research the blazor technology to build an application that will save among other information, several attachments but in different sections on a page. So lets say I will need between two to 40 InputFile components as the user will have to upload files on them.
Is it possible to add more than one of this component?
<p id='Section1'>
<InputFile OnChange="@OnInputFileChange" multiple />
</p>
<p id='Section2'>
<InputFile OnChange="@OnInputFileChange" multiple />
</p>
<p id='Section3'>
<InputFile OnChange="@OnInputFileChange" multiple />
</p>
<p id='Section4'>
<InputFile OnChange="@OnInputFileChange" multiple />
</p>
<p id='Section5'>
<InputFile OnChange="@OnInputFileChange" multiple />
</p>
<p id='Section6'>
<InputFile OnChange="@OnInputFileChange" multiple />
</p>
<p id='SectionN'>
<InputFile OnChange="@OnInputFileChange" multiple />
</p>
Thanks for any help.