SqlDataSource

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!

Is it correct to say that when you use ASP.NET you use SqlDataSource but
when you use Windows forms you use SqlDataAdapter.

This question is just to understand the different pices of my learning of
ASP.NET.

//Tony
 
Hello!

Is it correct to say that when you use ASP.NET you use SqlDataSource but
when you use Windows forms you use SqlDataAdapter.

This question is just to understand the different pices of my learning of
ASP.NET.

//Tony

The SqlDataSource Class is a part of System.Web Assembly and used by
data-bound controls in ASP.NET. SqlDataAdapter is a part of
System.Data and can be used in both - Windows and Web applications
 
Back
Top