In my Visual Basic 2013 ASP.NET web application project running on Windows 7 Pro, I get this error every time I run it. If I drop my table before running it, my app creates table, but I get error. If table exists before running it, app tries to create table,
ignores error and continues, but I get error.
The Page_Load function steps through as expected, without error, to the end. And then the error occurs.
Imports System.Data.SqlClient
Public Class WebForm2
Inherits System.Web.UI.Page
Private ConnectionString As String = "Integrated Security=SSPI;" + "Initial Catalog=;" + "Data Source=localhost;"
Private reader As SqlDataReader = Nothing
Private conn As SqlConnection = Nothing
Private cmd As SqlCommand = Nothing
Private sql As String = Nothing
Public Const DEBUG_DEFAULT_CLIENT_ID = "NATIONS_BURGERS"
Public Const DEBUG_DEFAULT_JOB_ID = ...
Go to the complete details ...