AspNetCore : HttpResponse.TransmitFile Method (BUT for multiple files)?
I am looking for a method or a way to serve multiple html files to the site visitor the moment he enters the site.
Like:
Response.TransmitFile("index1.html"); Response.TransmitFile("index2.html"); Response.TransmitFile("index3.html"); Response.TransmitFile("index4.html"); Response.TransmitFile("index5.html");
I've went through AspNetCore documentation but haven't found anything sensible.
Any help appreciated.
PS, i dont want the files to be downloaded to disk but displayed in browser, instead.
0 comments:
Post a Comment