Click here to Skip to main content
15,887,988 members

Comments by A. Orozco (Top 5 by date)

A. Orozco 17-Oct-17 10:43am View    
You beat me to it!
A. Orozco 10-Dec-15 16:29pm View    
Great answer to a really vague question.
A. Orozco 10-Dec-15 15:52pm View    
Is there a particular reason you need to join [ads] and UserInfo tables? It looks like you JOIN condition is not exactly right.
A. Orozco 25-Apr-12 15:52pm View    
Are you expecting the results from "SELECT * FROM Claim WHERE ClaimID =" + ClaimID + "" to be all Int64 (i.e. all the columns are Int64) so you can load them into and array of Int64? If not, you will have to change your approach.

Also, doing this: dbResult[0] = "Success"; will fail if dbResult is an array of Int64 because, wait for it..... "Success" is not an Int64!
A. Orozco 25-Apr-12 11:44am View    
Are you trying to disable the button to prevent the user from clicking twice? In that case I suggest you use javascript to disable it and then trigger the server side code.