Answer Posted / satish
for printing a data on a label from database for this u
have to declare a label Label1 in the application and then
declare a datarow for retrieving row data from dataset and
the assign it to the label like this
datarow dr=dataset.tables[0].rows[1];
Label1=dr[0].tostring();
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Does c# support properties of array types?
What is querystring in c#?
What is a view? What is the use of it?
What is the difference between early binding and late binding in c#?
What is reflection in c#?
Is c# a keyword?
Why do we use delegates?
Why are strings immutable in c#?
Explain the difference between Metadata and Manifest
How big is an int in c#?
What is c# used for?
Is c# substring zero based?
Can a constructor have a return type?
How to do and Apply Themes to Datagrid,Lable,Textbox,etc., in C#.NET 2005 Windows Application? (like who we will do themes in ASP.NET using .CSS and .SKIN files). Urgent!!
What is difference between value and reference types in C#.NET