how the value of label is printed through a button in
asp.net web application
Answers were Sorted based on User's Feedback
Answer / anamika
protected void Button_Click(object sender,EventArgs e)
{
Response.write(Label1.Text);
}
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / archana bobade
protected void Button_Click(object sender,EventArgs e)
{
Label1.Text= "Value is Printed";
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vikram
protected void Button_Click(object sender,EventArgs e)
{
Label1.Text="print the value";
| Is This Answer Correct ? | 0 Yes | 0 No |
How to Create Scrollable Micro Windows?
Give coding for Exception Handling Techniques in ASP.NET?
What do you create for easier access of data?
Code for Sending E-Mail with System.Web.Mail?
how to create a search bar which access data from various websites and retrieves the data
How to get the row index on checking a Checkbox in a ListView
How to get the row index on checking a Checkbox in a ListView
How we use ajax in asp.net through javaScript. Please givee me an example.
How to Export Data to Excel?
how to convert Dataset to Object Array or list in c# .net
Code for Communicating over Sockets?
How to Bind Nested XML to a Repeater Control with Container.DataItem?