Hi Guys,
I am a bit of a hobby coder and mostly my expertise lies with asp classic, I had a web app made my a programmer that I can no longer contact and I noticed a few issues that might cause problems in the future through duplicate values in a customer table so I've
changed the where condition to filter by name from what was a a customer id number value.
Trouble is now I can't find what syntax I need to use with text values and where.
ASP classic it would simply be a case of changing " & value & " to '" & value & "' but I am still lost with asp.net.
I should elaborate that I am using an access database so am getting a missing operator error
Any Help would be appreciated.
Here is my code
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Net.Mail;
using Sy ...
Go to the complete details ...