Click here to Skip to main content
15,924,193 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to Expose Click Event Method for User Control Pin
Mike Ellison14-Aug-06 8:01
Mike Ellison14-Aug-06 8:01 
AnswerRe: How to Expose Click Event Method for User Control Pin
RayLouw14-Aug-06 23:50
RayLouw14-Aug-06 23:50 
QuestionQuestion about Authentication events ??? Pin
devboycpp14-Aug-06 6:34
devboycpp14-Aug-06 6:34 
QuestionHow to set connection Timeout to a deployed project. Pin
SIJUTHOMASP14-Aug-06 5:04
professionalSIJUTHOMASP14-Aug-06 5:04 
AnswerRe: How to set connection Timeout to a deployed project. Pin
Mike Ellison14-Aug-06 7:03
Mike Ellison14-Aug-06 7:03 
GeneralRe: How to set connection Timeout to a deployed project. Pin
SIJUTHOMASP14-Aug-06 7:24
professionalSIJUTHOMASP14-Aug-06 7:24 
GeneralRe: How to set connection Timeout to a deployed project. Pin
Mike Ellison14-Aug-06 7:56
Mike Ellison14-Aug-06 7:56 
GeneralRe: How to set connection Timeout to a deployed project. Pin
Ramasubramaniam15-Aug-06 3:28
Ramasubramaniam15-Aug-06 3:28 
I have faced the similar problem in my application. To change the connection timeout property in the query string won't solve the issue. You have to change on the code, imagine you are using an command object and executing a stored procedure, you have to set the CommandTimeout property of the command object to some time (Seconds). It is working for me. I tried with web.config connection timeout property of the connection string, it was not working.

Example:
========
SqlCommand oCmd = new SqlCommand("Procedure1", oConn);
oCmd.CommandType = CommandType.StoredProcedure;
oCmd.CommandTimeout = 300;
SqlDataAdapter oAdp = new SqlDataAdapter(oCmd);

Questiondynamically adding columns to datagrid from sql statement Pin
gbabu1714-Aug-06 4:04
gbabu1714-Aug-06 4:04 
AnswerRe: dynamically adding columns to datagrid from sql statement Pin
Ramasubramaniam14-Aug-06 4:35
Ramasubramaniam14-Aug-06 4:35 
GeneralRe: dynamically adding columns to datagrid from sql statement Pin
gbabu1714-Aug-06 5:18
gbabu1714-Aug-06 5:18 
GeneralRe: dynamically adding columns to datagrid from sql statement Pin
Ramasubramaniam15-Aug-06 3:22
Ramasubramaniam15-Aug-06 3:22 
Questionhow to convert barcode number to pic Pin
mahmoud mohammed14-Aug-06 4:00
mahmoud mohammed14-Aug-06 4:00 
Questionhow to set HTTP Headers property 'Enable content expiration through programaticaly? Pin
subburaj.sabapathy14-Aug-06 3:30
subburaj.sabapathy14-Aug-06 3:30 
QuestionSessions in ASP.NET using C# Pin
sudheerkonda14-Aug-06 3:09
sudheerkonda14-Aug-06 3:09 
AnswerRe: Sessions in ASP.NET using C# Pin
Mike Ellison14-Aug-06 3:15
Mike Ellison14-Aug-06 3:15 
AnswerRe: Sessions in ASP.NET using C# Pin
simple one14-Aug-06 19:02
simple one14-Aug-06 19:02 
Question- ASP.net GridView - OnCommand not fired! Pin
Martines00714-Aug-06 2:58
Martines00714-Aug-06 2:58 
Question(Query)Reg : Databinding in GridView asp.net 2.0 Pin
Jay_se14-Aug-06 2:19
Jay_se14-Aug-06 2:19 
AnswerRe: (Query)Reg : Databinding in GridView asp.net 2.0 Pin
Mike Ellison14-Aug-06 3:20
Mike Ellison14-Aug-06 3:20 
GeneralThanx Pin
Jay_se14-Aug-06 3:48
Jay_se14-Aug-06 3:48 
QuestionHow to Use Paypal and 2checkout .com for Payment Pin
Amit Agarrwal14-Aug-06 0:25
Amit Agarrwal14-Aug-06 0:25 
AnswerRe: How to Use Paypal and 2checkout .com for Payment Pin
Paddy Boyd14-Aug-06 2:24
Paddy Boyd14-Aug-06 2:24 
GeneralRe: How to Use Paypal and 2checkout .com for Payment Pin
Anil Ch15-Aug-06 3:37
Anil Ch15-Aug-06 3:37 
GeneralRe: How to Use Paypal and 2checkout .com for Payment Pin
Amit Agarrwal17-Aug-06 3:13
Amit Agarrwal17-Aug-06 3:13 

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.