| http://www.w3.org/ns/prov#value | - Below is an example of how I process input fields from a web site.strSQL += INSERT INTO mytable ([Category], [Subcategory], [inputfield])"strSQL += VALUES (' + category + ', ' + subcategory + ', ?); OleDbCommand myCommand = new OleDbCommand(strSQL, OleDbConn1);myCommand.Connection = OleDbConn1;myCommand.Parameters.Add(@inputfield, OleDbType.VarChar, inputfield.Text.Length);myCommand.Para
|