Click here to Skip to main content
15,891,136 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: asp.net Pin
taha bahraminezhad Jooneghani6-Jun-12 7:43
taha bahraminezhad Jooneghani6-Jun-12 7:43 
AnswerRe: asp.net Pin
Paul Conrad6-Jun-12 7:45
professionalPaul Conrad6-Jun-12 7:45 
AnswerRe: asp.net Pin
Abhinav S6-Jun-12 16:08
Abhinav S6-Jun-12 16:08 
AnswerRe: asp.net Pin
Sandeep Mewara6-Jun-12 19:47
mveSandeep Mewara6-Jun-12 19:47 
QuestionRemove popup modal dialog title Pin
anishkannan6-Jun-12 3:01
anishkannan6-Jun-12 3:01 
AnswerRe: Remove popup modal dialog title Pin
R. Giskard Reventlov6-Jun-12 5:34
R. Giskard Reventlov6-Jun-12 5:34 
QuestionUnable to debug these expressions Pin
indian1435-Jun-12 23:39
indian1435-Jun-12 23:39 
AnswerRe: Unable to debug these expressions Pin
Bernhard Hiller7-Jun-12 22:36
Bernhard Hiller7-Jun-12 22:36 
Where did you find that weird code for generating a Fibonacci series?
Well, that's what I found when debugging. Why is debugging complicated?
C#
for (int i = 3, j = 0, k = 1; (i = j + k) < 30; j = (k = j) < 0 ? i : i)
{
    System.Diagnostics.Debug.WriteLine(string.Format("i={0}, j={1}, k={2}", i, j, k));
}

Stepping thru it, you'll see that the start value of i can be anything, because it will be set to j+k when the condition for the loop is checked.
And j = (k = j) < 0 ? i : i always does k=j followed by j=i, only written in a way to obfuscate things.
Questionasp.net session expired continuously while i am working in my app and making transactions i became logged out...need help? Pin
ma.amer5-Jun-12 23:20
ma.amer5-Jun-12 23:20 
AnswerRe: asp.net session expired continuously while i am working in my app and making transactions i became logged out...need help? Pin
Pankaj Nikam6-Jun-12 0:23
professionalPankaj Nikam6-Jun-12 0:23 
GeneralRe: asp.net session expired continuously while i am working in my app and making transactions i became logged out...need help? Pin
ma.amer6-Jun-12 0:58
ma.amer6-Jun-12 0:58 
GeneralRe: asp.net session expired continuously while i am working in my app and making transactions i became logged out...need help? Pin
Richard MacCutchan6-Jun-12 2:56
mveRichard MacCutchan6-Jun-12 2:56 
GeneralRe: asp.net session expired continuously while i am working in my app and making transactions i became logged out...need help? Pin
Pankaj Nikam6-Jun-12 7:45
professionalPankaj Nikam6-Jun-12 7:45 
AnswerRe: asp.net session expired continuously while i am working in my app and making transactions i became logged out...need help? Pin
Paul Conrad6-Jun-12 9:14
professionalPaul Conrad6-Jun-12 9:14 
GeneralRe: asp.net session expired continuously while i am working in my app and making transactions i became logged out...need help? Pin
ma.amer6-Jun-12 21:52
ma.amer6-Jun-12 21:52 
QuestionFlash Object Socket in asp.net Pin
Zeyad Jalil5-Jun-12 20:23
professionalZeyad Jalil5-Jun-12 20:23 
QuestionUpload an Excel to Sql table Pin
comeshyamala5-Jun-12 19:29
comeshyamala5-Jun-12 19:29 
AnswerRe: Upload an Excel to Sql table Pin
egenis5-Jun-12 21:06
egenis5-Jun-12 21:06 
QuestionC# web form delegates Pin
classy_dog5-Jun-12 13:33
classy_dog5-Jun-12 13:33 
AnswerRe: C# web form delegates Pin
Abhinav S5-Jun-12 16:16
Abhinav S5-Jun-12 16:16 
QuestionReporting structure in asp.net Pin
sarojcode5-Jun-12 9:33
sarojcode5-Jun-12 9:33 
AnswerRe: Reporting structure in asp.net Pin
Paul Conrad5-Jun-12 10:40
professionalPaul Conrad5-Jun-12 10:40 
AnswerRe: Reporting structure in asp.net Pin
Abhinav S5-Jun-12 16:18
Abhinav S5-Jun-12 16:18 
QuestionGrid in ASP.Net Pin
basitsar5-Jun-12 5:26
basitsar5-Jun-12 5:26 
AnswerRe: Grid in ASP.Net Pin
R. Giskard Reventlov5-Jun-12 5:34
R. Giskard Reventlov5-Jun-12 5:34 

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.