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
Saber Shaikh
757
1.2k
135.4k
How to set Combobox is Slect Option And then Bind Data
Dec 19 2014 12:41 AM
LINQ
var query = (from p in db.Tbl
select new
{
p.PartNo
}).ToList();
// Combobox1.Items.Insert(1, "Select Part No");
Combobox1.DataSource = query;
Combobox1.DisplayMember = "tblPartMaster_PartNo";
Combobox1.ValueMember = "tblPartMaster_PartNo";
How to set Combobox is Slect Option And then Bind Data in Combobox
My Blog:
http://aspnettutorialscode.blogspot.in/
Thank You
Reply
Answers (
4
)
linq query with where condition???
Remove some Records from child collection using Lambda expr