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/bahnplan.web/Pages/GenIcs.cshtml

8 lines
263 B
Plaintext

@page
@model bahnplan.web.Pages.GenIcs
@{
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)