Hi TayDanz,
Refer below sample code.
Sample.txt
Welcome to ASPForums.net
Welcome to ASPSnippets.com
Controller
public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
string[] texts = System.IO.File.ReadAllLines(Server.MapPath("~/App_Data/Sample.txt"));
ViewBag.Data = texts;
return View();
}
}
View
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<div>
@foreach (string text in ViewBag.Data)
{
<h4>@text</h4>
}
</div>
</body>
</html>
Output
Welcome to ASPForums.net
Welcome to ASPSnippets.com