Click here to Skip to main content
16,006,013 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDataBase Problem @@ Pin
Michael†Cheong21-Apr-13 5:29
Michael†Cheong21-Apr-13 5:29 
AnswerRe: DataBase Problem @@ Pin
Sandeep Mewara21-Apr-13 6:11
mveSandeep Mewara21-Apr-13 6:11 
GeneralRe: DataBase Problem @@ Pin
Michael†Cheong21-Apr-13 6:22
Michael†Cheong21-Apr-13 6:22 
AnswerRe: DataBase Problem @@ Pin
PIEBALDconsult21-Apr-13 6:29
mvePIEBALDconsult21-Apr-13 6:29 
GeneralRe: DataBase Problem @@ Pin
Michael†Cheong21-Apr-13 6:36
Michael†Cheong21-Apr-13 6:36 
GeneralRe: DataBase Problem @@ Pin
PIEBALDconsult21-Apr-13 7:19
mvePIEBALDconsult21-Apr-13 7:19 
GeneralRe: DataBase Problem @@ Pin
Jasmine250122-Apr-13 9:21
Jasmine250122-Apr-13 9:21 
AnswerRe: DataBase Problem @@ Pin
Aner Bautista22-Apr-13 8:07
Aner Bautista22-Apr-13 8:07 
Questionasp.net. webPages, webForms, MVC, ... oh my god Pin
Frygreen20-Apr-13 9:34
Frygreen20-Apr-13 9:34 
AnswerRe: asp.net. webPages, webForms, MVC, ... oh my god Pin
Sandeep Mewara20-Apr-13 23:26
mveSandeep Mewara20-Apr-13 23:26 
AnswerRe: asp.net. webPages, webForms, MVC, ... oh my god Pin
Richard MacCutchan20-Apr-13 23:38
mveRichard MacCutchan20-Apr-13 23:38 
GeneralRe: asp.net. webPages, webForms, MVC, ... oh my god Pin
Frygreen26-Apr-13 7:45
Frygreen26-Apr-13 7:45 
Questionhow to create YES/NO buttons in a popup? Pin
Qadri Jillani19-Apr-13 20:57
Qadri Jillani19-Apr-13 20:57 
AnswerRe: how to create YES/NO buttons in a popup? Pin
Abhishek Sur20-Apr-13 1:37
professionalAbhishek Sur20-Apr-13 1:37 
Questionsetup file Pin
Ashwini kumbhar19-Apr-13 19:31
Ashwini kumbhar19-Apr-13 19:31 
AnswerRe: setup file Pin
Karthik Harve19-Apr-13 19:56
professionalKarthik Harve19-Apr-13 19:56 
Questionjavascript __dopostback System.NullReferenceException Pin
jojoba201119-Apr-13 18:36
jojoba201119-Apr-13 18:36 
AnswerRe: javascript __dopostback System.NullReferenceException Pin
Karthik Harve19-Apr-13 20:21
professionalKarthik Harve19-Apr-13 20:21 
QuestionRe: javascript __dopostback System.NullReferenceException Pin
jojoba201119-Apr-13 20:47
jojoba201119-Apr-13 20:47 
AnswerRe: javascript __dopostback System.NullReferenceException Pin
Karthik Harve19-Apr-13 21:26
professionalKarthik Harve19-Apr-13 21:26 
QuestionRe: javascript __dopostback System.NullReferenceException Pin
jojoba201119-Apr-13 22:04
jojoba201119-Apr-13 22:04 
QuestionRe: javascript __dopostback System.NullReferenceException Pin
jojoba201121-Apr-13 17:41
jojoba201121-Apr-13 17:41 
Questionhow to append text on textarea T_T no people reply Pin
Michael†Cheong19-Apr-13 5:21
Michael†Cheong19-Apr-13 5:21 
AnswerRe: how to append text on textarea T_T no people reply Pin
Jasmine250119-Apr-13 9:45
Jasmine250119-Apr-13 9:45 
AnswerRe: how to append text on textarea T_T no people reply Pin
R. Giskard Reventlov19-Apr-13 10:57
R. Giskard Reventlov19-Apr-13 10:57 
There is no append method on the TextArea.
You would simply create the text you wanted to append, something like:
C#
string current = TextArea1.Value;
string stringToAdd = "The quick brown fox jumps over the lazy dog";
string newString = current + stringToAdd;
TextArea1.Value = newString;

This is, of course, a very simplistic example but should give you the idea of how this works.
You are not appending to the control but to the text within the control.
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair.
nils illegitimus carborundum

me, me, me

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.