This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
trainav/trainav.web/Pages/GenIcs.cshtml

8 lines
262 B
Plaintext
Raw Permalink Normal View History

2020-10-19 01:36:44 +02:00
@page
2022-04-29 14:59:24 +02:00
@model trainav.web.Pages.GenIcs
2020-10-19 01:36:44 +02:00
@{
Layout = null;
Response.ContentType = "text/calendar";
Response.Headers.Add("content-disposition", $@"attachment;filename=""trip-{Model.Legs.First().DepTime.Split("T")[0]}.ics""");
}
@Html.Raw(Model.IcsOutput)