Utils.readFile
is a Java statement. There is no standard .NET method named Utils.ReadFile
. Maybe it is in a custom library.
You could use File.ReadAllText
though:
string text = File.ReadAllText(Server.MapPath(Url.Content("~/Content/Daybook.html")))
0
solved In which namespace is Utils.ReadFile written?