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
Snehal Bobde
NA
11
20.3k
What is Error-The multi-part identifier "System.Data.DataRowView" could not be bound. in code bellow-
Dec 18 2011 3:04 AM
what is error
Error-The multi-part identifier "System.Data.DataRowView" could not be bound.
in code bellow-
con = new SqlConnection(@"Data Source=COMP12\SQLEXPRESS;Initial Catalog=TNTDB;Integrated Security=True");
con.Open();
string str = "select Material_Description from InwardRegister where PO=" + txt_po_no.SelectedValue + "";
SqlCommand cmd = new SqlCommand(str, con);
dr = cmd.ExecuteReader();
while (dr.Read())
{
cmb_mat_name.Items.Add(dr["Material_Description"]);
}
dr.Close();
cmb_mat_name.Text = "-Select-";
con.Close();
Reply
Answers (
1
)
Finally block in C#
Help me with triangle.