<%@ Page Language="VB" Debug="true" %><%@ Import Namespace="System.Data" %><%@ Import Namespace="System.Data.SQLClient" %><script language="VB" runat="server">Sub Page_Load(Source as Object, E as EventArgs)Dim cnn As New SQLConnection("server=LOCALHOST;User id=SA;password=;database=Northwind")Dim UpdateCommand As SqlCommand = New SqlCommand()UpdateCommand.Connection = cnnDim sql As Stringsql = "Delete from categories WHERE CategoryID = @CatID"UpdateCommand.CommandText = sqlUpdateCommand.Parameters.Add("@CatID", SqlDbType.Int).Value = 14Trycnn.Open()UpdateCommand.ExecuteNonQuery()Catch ex As Exceptionresponse.Write(ex.ToString())Finallycnn.Close()End Tryend sub