[Solved] Display data on ASP.NET wep page [closed]
There is no such thing as Console.WriteLine in ASP.NET. ASP.NET is a technology framework built for the Web, not for the Console applications in the Windows. What you wanted to use would be this Response.Write(String.Format(“{0}, {1}, {2}, {3}, {4} “, column[0], column[1], column[2], column[3], column[4])); This would write the content as a Response to the … Read more