Click here to Skip to main content
15,898,035 members
Home / Discussions / C#
   

C#

 
AnswerRe: build keylogger Pin
Dave Kreskowiak26-Jun-15 17:33
mveDave Kreskowiak26-Jun-15 17:33 
RantVisual Studio Express 2013 Installer Package Pin
Member 932620926-Jun-15 15:10
Member 932620926-Jun-15 15:10 
GeneralRe: Visual Studio Express 2013 Installer Package Pin
Gerry Schmitz26-Jun-15 16:43
mveGerry Schmitz26-Jun-15 16:43 
QuestionXmlWriter WriteString Color Pin
haithomy25-Jun-15 7:37
haithomy25-Jun-15 7:37 
AnswerRe: XmlWriter WriteString Color Pin
Dave Kreskowiak25-Jun-15 10:22
mveDave Kreskowiak25-Jun-15 10:22 
QuestionC# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 7:15
Norris Chappell25-Jun-15 7:15 
AnswerRe: C# code is only inserting 1 record. Pin
F-ES Sitecore25-Jun-15 7:23
professionalF-ES Sitecore25-Jun-15 7:23 
AnswerRe: C# code is only inserting 1 record. Pin
Dave Kreskowiak25-Jun-15 7:31
mveDave Kreskowiak25-Jun-15 7:31 
There are a ton of problem with this code.

The major disfunctional standouts are why are you grabbing a GridViewRow, casting it to a TextBox for each column in the row?? All of these FindControl calls are garbage. Don't do this. The GridViewRow already gives you the data in the row instead of ignoring the row entirely and going to the UI grid to find controls.

You're basically finding the same controls over and over again. You're not going down the rows in the grid. You're getting the same controls in the first row of the grid.

You also seem to be inserting a value for StaffTrackingID but you're doing something awfully fishy to set this value.

The SQL statement you have is garbage. You're using string concatenation to build an SQL statement. This opens you up to SQL Injection attacks and can result in the complete loss of your database. Google for "C# SQL Parameterized queries" to find out what you're supposed to be doing.
A guide to posting questions on CodeProject

Click this: Asking questions is a skill.
Seriously, do it.

Dave Kreskowiak

GeneralRe: C# code is only inserting 1 record. Pin
Norris Chappell25-Jun-15 9:12
Norris Chappell25-Jun-15 9:12 
GeneralRe: C# code is only inserting 1 record. Pin
Dave Kreskowiak25-Jun-15 10:20
mveDave Kreskowiak25-Jun-15 10:20 
GeneralRe: C# code is only inserting 1 record. Pin
Norris Chappell25-Jun-15 13:05
Norris Chappell25-Jun-15 13:05 
GeneralRe: C# code is only inserting 1 record. Pin
Sascha Lefèvre25-Jun-15 14:25
professionalSascha Lefèvre25-Jun-15 14:25 
AnswerRe: C# code is only inserting a few records. Pin
Richard Deeming25-Jun-15 8:47
mveRichard Deeming25-Jun-15 8:47 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 9:16
Norris Chappell25-Jun-15 9:16 
GeneralRe: C# code is only inserting a few records. Pin
Richard Deeming25-Jun-15 9:29
mveRichard Deeming25-Jun-15 9:29 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 11:03
Norris Chappell25-Jun-15 11:03 
GeneralRe: C# code is only inserting a few records. Pin
Sascha Lefèvre25-Jun-15 14:08
professionalSascha Lefèvre25-Jun-15 14:08 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 15:20
Norris Chappell25-Jun-15 15:20 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell29-Jun-15 3:44
Norris Chappell29-Jun-15 3:44 
GeneralRe: C# code is only inserting a few records. Pin
Richard Deeming29-Jun-15 3:49
mveRichard Deeming29-Jun-15 3:49 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell29-Jun-15 4:42
Norris Chappell29-Jun-15 4:42 
GeneralRe: C# code is only inserting a few records. Pin
Richard Deeming29-Jun-15 4:44
mveRichard Deeming29-Jun-15 4:44 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell29-Jun-15 5:04
Norris Chappell29-Jun-15 5:04 
GeneralRe: C# code is only inserting a few records. Pin
PIEBALDconsult25-Jun-15 10:10
mvePIEBALDconsult25-Jun-15 10:10 
GeneralRe: C# code is only inserting a few records. Pin
Norris Chappell25-Jun-15 10:35
Norris Chappell25-Jun-15 10:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.