Click here to Skip to main content
15,905,558 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Gridview Masters/Detail Question Pin
bgates197016-Feb-10 6:39
bgates197016-Feb-10 6:39 
AnswerFOUND IT! Pin
bgates197016-Feb-10 6:52
bgates197016-Feb-10 6:52 
AnswerRe: Gridview Masters/Detail Question Pin
gajendra_kshatriya16-Feb-10 18:33
gajendra_kshatriya16-Feb-10 18:33 
Questiondeploy to Dev Pin
arkiboys16-Feb-10 3:24
arkiboys16-Feb-10 3:24 
AnswerRe: deploy to Dev Pin
Rutvik Dave16-Feb-10 3:36
professionalRutvik Dave16-Feb-10 3:36 
GeneralRe: deploy to Dev Pin
arkiboys16-Feb-10 20:56
arkiboys16-Feb-10 20:56 
QuestionHow to retrieve response time to each request made in my ASPX page? Pin
Rock Star.16-Feb-10 2:38
Rock Star.16-Feb-10 2:38 
AnswerRe: How to retrieve response time to each request made in my ASPX page? Pin
Rutvik Dave16-Feb-10 3:44
professionalRutvik Dave16-Feb-10 3:44 
If this is for performance troubleshoot then

i.e.

On that method which you want to troubleshoot

add a Label called lblResponseTime on the page somewhere and do the following on your method

protected void cmdSearch_Click(object sender, EventArgs e)
{
            DateTime responseStart = DateTime.Now;

            // Your existing code for this method here...

            DateTime responseEnd = DateTime.Now;
            TimeSpan responseTime = responseEnd.Subtract(responseStart);
            lblResponseTime.Text = responseTime.Seconds + ":" + responseTime.Milliseconds;  
}


this will calculate response time taken for that action.
QuestionUpload multiple Files by selecting directory Pin
sjs4u16-Feb-10 1:47
sjs4u16-Feb-10 1:47 
AnswerRe: Upload multiple Files by selecting directory Pin
Brij16-Feb-10 2:13
mentorBrij16-Feb-10 2:13 
QuestionAvoid Duplicate record insertion on page refresh(F5) Pin
amitamit09916-Feb-10 0:38
amitamit09916-Feb-10 0:38 
AnswerRe: Avoid Duplicate record insertion on page refresh(F5) Pin
Anurag Gandhi16-Feb-10 1:20
professionalAnurag Gandhi16-Feb-10 1:20 
GeneralRe: Avoid Duplicate record insertion on page refresh(F5) Pin
amitamit09916-Feb-10 1:52
amitamit09916-Feb-10 1:52 
GeneralRe: Avoid Duplicate record insertion on page refresh(F5) Pin
Anurag Gandhi16-Feb-10 2:56
professionalAnurag Gandhi16-Feb-10 2:56 
AnswerRe: Avoid Duplicate record insertion on page refresh(F5) Pin
JustWorking16-Feb-10 1:30
JustWorking16-Feb-10 1:30 
AnswerRe: Avoid Duplicate record insertion on page refresh(F5) Pin
Rhys Jacob16-Feb-10 1:35
Rhys Jacob16-Feb-10 1:35 
AnswerRe: Avoid Duplicate record insertion on page refresh(F5) Pin
Brij16-Feb-10 1:40
mentorBrij16-Feb-10 1:40 
GeneralRe: Avoid Duplicate record insertion on page refresh(F5) Pin
Anurag Gandhi16-Feb-10 1:50
professionalAnurag Gandhi16-Feb-10 1:50 
GeneralRe: Avoid Duplicate record insertion on page refresh(F5) Pin
Brij16-Feb-10 2:04
mentorBrij16-Feb-10 2:04 
AnswerRe: Avoid Duplicate record insertion on page refresh(F5) Pin
Dinesh Mani16-Feb-10 2:33
Dinesh Mani16-Feb-10 2:33 
GeneralRe: Avoid Duplicate record insertion on page refresh(F5) Pin
amitamit09916-Feb-10 3:00
amitamit09916-Feb-10 3:00 
AnswerRe: Avoid Duplicate record insertion on page refresh(F5) Pin
bgates197016-Feb-10 4:55
bgates197016-Feb-10 4:55 
AnswerRe: Avoid Duplicate record insertion on page refresh(F5) [modified] Pin
Member 103390716-Feb-10 9:29
Member 103390716-Feb-10 9:29 
GeneralRe: Avoid Duplicate record insertion on page refresh(F5) Pin
amitamit09916-Feb-10 19:03
amitamit09916-Feb-10 19:03 
Questionbind Checkboxes Pin
m@dhu15-Feb-10 22:03
m@dhu15-Feb-10 22:03 

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.