Building the project in ASP.NET
What follows is the ASP.NET code for the grading tool. This code is very similar to the code that was presented for the VB.NET console application. With this example, no ASPX code changes are required as the output is handled with the response.write
method:
Imports System.IO Public Class ASPNETGradingTool Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim filePath As String = "students.csv" Dim studentGrades As New Dictionary(Of String, List(Of String))() Using reader As New StreamReader(filePath) While Not reader...