#3 Use Query to get CSV Data from a File Configured in Settings
Requirements
Resources
Output
- 2sxc (#1)
-
Image Resizer (#4)
Automatic, amazing image Resizer (find out more) - Koi (#2)
- Razor Blade (#3)
#3 Use Query to get CSV Data from a File Configured in Settings
Source Code of this file
Below you'll see the source code of the file. Note that we're just showing the main part, and hiding some parts of the file which are not relevant for understanding the essentials. Click to expand the code
@inherits Custom.Hybrid.Razor14 @using ToSic.Razor.Blade; @using System.Linq; <!-- unimportant stuff, hidden --> <div @Sys.PageParts.InfoWrapper()> @Html.Partial("../shared/DefaultInfoSection.cshtml") <div @Sys.PageParts.InfoIntro()> <h2>Example from CSV which was uploaded as an App Setting</h2> <p> This is similar to the previous example, except that the CSV file can be uploaded again and again in the App-Settings UI. So the path isn't hard-coded. <br> </p> </div> </div> @{ // get the query var query = Kit.Data.GetQuery("ProductsFromCsvInAppSettings"); // get the data from the query var products = AsList(query); // get the current author (if available) from the stream Current var current = AsList(query["Current"]).FirstOrDefault(); // Get the current url params so we can derive from it for details links var urlParams = CmsContext.Page.Parameters; } <ul> @foreach (var product in products) { <!-- this li will have class=selected if it's the current one --> <li class='@(product == current ? "selected" : "")'> <!-- this creates a link to the current page and product=id --> <a href='@Link.To(parameters: urlParams.Set("product", product.EntityId.ToString()))'> @product.Name (#@product.Id) </a> @if (current == product) { <br> <em> @current.Description (<a href="@product.Link" target="_blank">find out more</a>) </em> } </li> } </ul> @* Footer *@ @Html.Partial("../Shared/Layout/FooterWithSource.cshtml", new { Sys = Sys })