What's the equivalent of using asp.net page response in Blazor ?
such :
Response.Clear(); Response.ContentType = "application/text; charset=utf-8"; Response.Write("SOME TEXT"); Response.End();
Blazor runs on the client. It doesn't has a Response object. That belongs to code on the server. You should use a Web API endpoint to serve non-html content. Then you can use a standard link to navigate to the URL of the endpoint.