TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
rhenson
NA
2
0
setting label text to dataset element text
Oct 29 2004 8:35 AM
Hi, I'm learning .net and C# and am having problems setting a label's text value to a data element value in a dataset for display as part of a webform. Any help would be greatly appreciated. Here is where I am: Given a function that returns a datset: public DataSet getDetail(string itemIDIn) { //I can do which this: DataSet ds = GetDataSet("SELECT * FROM myTable WHERE UniqueID = '" + itemIDIn + "'"); //or I can do this if needed, just not sure if it is DataSet ds = GetDataSet("SELECT myTable.Description AS Description, myTable.Color AS Color WHERE UniqueID = '" + itemIDIn + "'"); return ds; } On my webform.cs I have: protected System.Web.UI.WebControls.Label descLabel; protected System.Web.UI.WebControls.Label colorLabel; private void Page_Load(object sender, System.EventArgs e) { if (!IsPostBack) { ds1.Equals(db.getDetail("123"); //Now, how do I set the text to descLabel and colorLabel to the text in the dataset??? } } With this definition on the webform itself:
Description:
Color:
Reply
Answers (
0
)
Database - strange error
How to insert a row with a column with an auto increase