I currently have a way for a user to upload a csv to my website and I'm looking to see if there is a way to create a new view/page for each row on the csv. Right now the csv can have any number of rows so I wanted to see if this is the best option or to limit the number of rows the user can upload and create that many views manually.
I have looked into partial views but don't think that will work. I've also looked into limiting the number of rows on the csv so I won't have to use the for loop to create the views.
Have a separate view/page for each row, but right now I only have one view pulling the first row.