here is a little problem ...
string SQL = @"INSERT INTO [Answers] ([UserID],[QuestionID],[SelectedIndex])
VALUES(@uid,@qid,@sin)";
SqlParameter[] par = new SqlParameter[] {
new SqlParameter("@uid",this.userid),
new SqlParameter("@qid",this.questionid),
new SqlParameter("@sin",this.qOptions.SelectedIndex)
};
this does not work ... Why not? i dunno, but the firs one is bigint in SQL (microsoft 2005) and in dotNET side its an int ... second one is a an SQL uniqueidentifier while its a string in dotNEWT but it works that way i have experience .. third one is an integer in SQL and int in dotNET ... since dotNET does not have any major malfunction, what is my major malfunction? :) thank you sargeant in advance :)))