ページ読み込みイベントでチケットを予約した乗客の詳細を示すグリッドビューがあります。次のコードがあります。
Label1.Text = Session("Pid").ToString()
Dim Sql As String = "select * from Plist where Pid='" & Label1.Text & "'"
Try
con.ConnectionString = strCon
Dim cm As New SqlClient.SqlCommand(Sql, con)
con.Open()
cm.ExecuteNonQuery()
Catch ex As Exception
MsgBox(ex.Message)
Finally
If con.State = ConnectionState.Open Then
con.Close()
End If
End Try
このエラーが発生しています:
System.NullReferenceException: Object reference not set to an instance of an object.