Hello
Before I attempt to use the try | catch method of locating a coding error as in
try
{
//your insert code ..........
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
and referred to here:
http://forums.asp.net/p/2001833/5753664.aspx?Re+Code+inserts+form+data+into+database+locally+but+not+online
I would be grateful if someone could shed some light on the following. This is in my aspx.vb code for my 'new user' registration form:
Protected Sub CreateUser_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Using conn As OleDbConnection = New OleDbConnection(System.Configuration.ConfigurationManager.ConnectionStrings("students").ConnectionStri ...
Go to the complete details ...