Answer Posted / m_dasharatham
An "untyped" dataset is an instance of the DataSet class
from the System.Data namespace. It’s called “untyped”
because all columns are provided as the base System.Object
type (“object” in C# and “Object” in VB.NET) and must be
coerced to the appropriate type, e.g.
void Form1_Load(object sender, EventArgs e) {
DataSet ds = new DataSet();
sqlDataAdapter1.Fill(ds);
foreach( DataRow row in ds.Tables[0].Rows ) {
string fname = (string)row["au_fname"];
bool contract = (bool)row["contract"];
string item =
string.Format("{0} has a contract: {1}", fname,
contract);
listBox1.Items.Add(item);
}
}
Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
How can you debug your.net application?
What is difference between inproc and outproc?
Define application state variable and session state variable?
How many types of cookies are available in asp?
Explain the code Access Security (CAS) in .net Framework?
What is mvc in asp.net tutorial? : Asp.Net MVC
Explain the path instructions in xaml?
Is post back in asp.net?
How many web config files can be created for an application?
Why would anyone need to implement their own hashtable or linked list?
What is syntax code to send email from an asp.net application?
Why do we need asp.net?
Mention the execution process for managed code?
Explain exception filters?
What is csrf attack in asp.net?