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

C#

 
AnswerRe: Help on Dictionaries and the BackgroundWorker class. Pin
MidwestLimey24-Mar-09 9:32
professionalMidwestLimey24-Mar-09 9:32 
AnswerRe: Help on Dictionaries and the BackgroundWorker class. Pin
Luc Pattyn24-Mar-09 15:36
sitebuilderLuc Pattyn24-Mar-09 15:36 
QuestionPrint Format in c#,winforms Pin
avvaru.murali24-Mar-09 7:28
avvaru.murali24-Mar-09 7:28 
QuestionTapi 3.0 events Pin
daniel kuperberg24-Mar-09 6:50
daniel kuperberg24-Mar-09 6:50 
QuestionGet label text value from ID in C# Pin
asipo24-Mar-09 6:36
asipo24-Mar-09 6:36 
AnswerRe: Get label text value from ID in C# Pin
moon_stick24-Mar-09 7:25
moon_stick24-Mar-09 7:25 
AnswerRe: Get label text value from ID in C# Pin
Xmen Real 24-Mar-09 8:36
professional Xmen Real 24-Mar-09 8:36 
GeneralRe: Get label text value from ID in C# Pin
asipo24-Mar-09 9:22
asipo24-Mar-09 9:22 
Thanks Xmen.
Here the solution, basically from him.

This is to change the Label99 text from "Hello world" to "My world"

Inside the body tag
<asp:Label id="Label99" runat="server" Text="Hello world" />


Inside the script tag using c#
void Page_Load(Object s, EventArgs e)
{
     Label test = new Label();
     test = (Label)FindControl("Label99");
     test.Text = "My world";
}

QuestionHow to geht the Solution Items VSX Pin
Dromar24-Mar-09 6:32
Dromar24-Mar-09 6:32 
QuestionLooking for a TCP/IP commercial library Pin
dbambirck24-Mar-09 6:31
dbambirck24-Mar-09 6:31 
AnswerRe: Looking for a TCP/IP commercial library Pin
harold aptroot24-Mar-09 6:45
harold aptroot24-Mar-09 6:45 
GeneralRe: Looking for a TCP/IP commercial library Pin
dbambirck25-Mar-09 4:27
dbambirck25-Mar-09 4:27 
GeneralRe: Looking for a TCP/IP commercial library Pin
harold aptroot25-Mar-09 5:15
harold aptroot25-Mar-09 5:15 
GeneralRe: Looking for a TCP/IP commercial library Pin
dbambirck25-Mar-09 6:11
dbambirck25-Mar-09 6:11 
GeneralRe: Looking for a TCP/IP commercial library Pin
harold aptroot25-Mar-09 6:32
harold aptroot25-Mar-09 6:32 
QuestionRe: Looking for a TCP/IP commercial library Pin
CPallini24-Mar-09 7:58
mveCPallini24-Mar-09 7:58 
QuestionDynamic HTML to PDF Pin
ika224-Mar-09 6:19
ika224-Mar-09 6:19 
QuestionQuestion about HTML tag C# Pin
YiXiang_8924-Mar-09 5:26
YiXiang_8924-Mar-09 5:26 
AnswerRe: Question about HTML tag C# Pin
Deresen24-Mar-09 6:00
Deresen24-Mar-09 6:00 
AnswerRe: Question about HTML tag C# Pin
benjymous24-Mar-09 6:03
benjymous24-Mar-09 6:03 
AnswerRe: Question about HTML tag C# Pin
Mbah Dhaim24-Mar-09 6:27
Mbah Dhaim24-Mar-09 6:27 
Questionc# event - when new file is saved to system Pin
andypeeling24-Mar-09 4:20
andypeeling24-Mar-09 4:20 
AnswerRe: c# event - when new file is saved to system Pin
andypeeling24-Mar-09 4:20
andypeeling24-Mar-09 4:20 
AnswerRe: c# event - when new file is saved to system Pin
Ravi Bhavnani24-Mar-09 4:23
professionalRavi Bhavnani24-Mar-09 4:23 
GeneralRe: c# event - when new file is saved to system Pin
Dave Kreskowiak24-Mar-09 7:03
mveDave Kreskowiak24-Mar-09 7: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.