Hello everyone, I am having problems getting a simple string from a textbox into a SQL Server Express database. Here is what I have:
protected
{
newCon.Open();
insertCommand.BeginExecuteNonQuery();
}
The code above should enter "test" into the title column in the statstable but I get an error saying I need to enable my SQL Server accept remote connections, any ideas? Am I even approaching this correctly?