Click here to Skip to main content
15,891,607 members

Comments by haisol (Top 3 by date)

haisol 22-Nov-16 16:04pm View    
One too many close parentheses. Try to copy and paste again.
haisol 22-Nov-16 14:29pm View    
I've typically used sql command query type of stored procedures and added parameters to it (not query type of text). I would change your query to a stored procedure, set the command type to procedure and use the cmd.Parameters.AddWithValue. Another quicker option would be to change your query to this: select * from ODetails where orderID= " + DropDownList1.SelectedValue.ToString() (pseudo code).
haisol 16-Nov-16 8:43am View    
You probably do not need the DefaultButton on the pnl_BeneficaryDetails since it's on the outer panel (someOuterPanel)