Click here to Skip to main content
15,891,708 members
Home / Discussions / C#
   

C#

 
GeneralRe: Lock Controls or Record for Add/Edit/Delete C# Pin
ahmed_one10-Feb-14 2:36
ahmed_one10-Feb-14 2:36 
GeneralRe: Lock Controls or Record for Add/Edit/Delete C# Pin
Eddy Vluggen11-Feb-14 8:20
professionalEddy Vluggen11-Feb-14 8:20 
GeneralRe: Lock Controls or Record for Add/Edit/Delete C# Pin
ahmed_one11-Feb-14 17:21
ahmed_one11-Feb-14 17:21 
Questionword automatic rotation Pin
kskumaran9-Feb-14 22:15
kskumaran9-Feb-14 22:15 
GeneralRe: word automatic rotation Pin
harold aptroot9-Feb-14 22:18
harold aptroot9-Feb-14 22:18 
GeneralRe: word automatic rotation Pin
kskumaran9-Feb-14 22:21
kskumaran9-Feb-14 22:21 
GeneralRe: word automatic rotation Pin
harold aptroot9-Feb-14 22:26
harold aptroot9-Feb-14 22:26 
GeneralRe: word automatic rotation Pin
kskumaran10-Feb-14 1:07
kskumaran10-Feb-14 1:07 
AnswerRe: word automatic rotation PinPopular
Chris Quinn9-Feb-14 23:28
Chris Quinn9-Feb-14 23:28 
GeneralRe: word automatic rotation Pin
Bernhard Hiller10-Feb-14 21:29
Bernhard Hiller10-Feb-14 21:29 
Questionsending sms Pin
sadish69-Feb-14 20:02
sadish69-Feb-14 20:02 
SuggestionRe: sending sms Pin
Richard MacCutchan9-Feb-14 22:38
mveRichard MacCutchan9-Feb-14 22:38 
Questioncode to generate text from the given string and how to detect "\" in the text as a text and not as a tag during parsing of rtf file Pin
aayush saraswat9-Feb-14 6:54
aayush saraswat9-Feb-14 6:54 
AnswerRe: code to generate text from the given string and how to detect "\" in the text as a text and not as a tag during parsing of rtf file Pin
Mycroft Holmes9-Feb-14 11:58
professionalMycroft Holmes9-Feb-14 11:58 
AnswerRe: code to generate text from the given string and how to detect "\" in the text as a text and not as a tag during parsing of rtf file Pin
BillWoodruff9-Feb-14 19:03
professionalBillWoodruff9-Feb-14 19:03 
AnswerRe: code to generate text from the given string and how to detect "\" in the text as a text and not as a tag during parsing of rtf file Pin
Richard Deeming10-Feb-14 1:41
mveRichard Deeming10-Feb-14 1:41 
QuestionDisable combo box on selecting an option. Pin
Mohan Subramani9-Feb-14 3:40
Mohan Subramani9-Feb-14 3:40 
AnswerRe: Disable combo box on selecting an option. Pin
OriginalGriff9-Feb-14 3:47
mveOriginalGriff9-Feb-14 3:47 
AnswerRe: Disable combo box on selecting an option. Pin
BillWoodruff9-Feb-14 6:18
professionalBillWoodruff9-Feb-14 6:18 
Questionvideo and gps Pin
jas168-Feb-14 23:21
jas168-Feb-14 23:21 
AnswerRe: video and gps Pin
Ravi Bhavnani9-Feb-14 4:34
professionalRavi Bhavnani9-Feb-14 4:34 
QuestionGetting Data From User Pin
RebornProgrammer8-Feb-14 21:00
RebornProgrammer8-Feb-14 21:00 
AnswerRe: Getting Data From User Pin
OriginalGriff8-Feb-14 23:21
mveOriginalGriff8-Feb-14 23:21 
No, it won't work.
Or rather, it will - but not for long.

The problem is that you aren't thinking website - you are thinking desktop.

Websites do not work in the same way: the application is not running all the time, waiting for the user to do something. Instead, the website application is started again each time the user does something like request a page, press a button, and so forth. Which means that unlike a desktop application any data you assemble in your application ceases to exist as soon as the last bytes of data have going back to the client. If you don't store it somewhere permanent (or semi-permanent) explicitly, it is discarded, to make way for the next website / user combination.

If you want to keep a list of users, then you need to explicitly save the data, in a database, or in the Session, or in Cookies, depending on how permanent you need it to be.
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)

QuestionWrite to notepad or other windows Pin
alirezamansoori8-Feb-14 19:27
alirezamansoori8-Feb-14 19:27 
AnswerRe: Write to notepad or other windows Pin
OriginalGriff8-Feb-14 19:58
mveOriginalGriff8-Feb-14 19:58 

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.