Click here to Skip to main content
15,884,298 members

Comments by Deepak_Sharma_ (Top 32 by date)

Deepak_Sharma_ 15-Oct-13 2:02am View    
Dispose SqlDataAdapter object after use. Put it inside using block:


using(daobj = new SqlDataAdapter(cmdobj))
{
daobj.Fill(dt);
}
Deepak_Sharma_ 16-Feb-13 1:50am View    
One should always refer to the documentation provided by the payment gateway API they are using like https://developer.paypal.com/ for PayPal
Deepak_Sharma_ 8-Sep-12 3:00am View    
Why are you storing connection string in a text file instead of app.config. Which is more secure and manageable.
Deepak_Sharma_ 7-Sep-12 9:09am View    
Ya, you can assign ID to the Button using its btnSubmit.Name property but it should work even without it
Deepak_Sharma_ 8-Aug-12 15:28pm View    
Hi, how can we increase this limit ?