ssssssss
ssssssss

Reputation:

Silverlight and SQLDataSource

Is it not possible to use a SQLDataSource in an aspx page inside a Silverlight application?

Upvotes: 0

Views: 851

Answers (4)

Braulio
Braulio

Reputation: 1728

Go for ADO .net Data Services

http://www.devx.com/MSDN/Article/40735/1763/page/1

Upvotes: 1

Jesper Fyhr Knudsen
Jesper Fyhr Knudsen

Reputation: 7937

No you can't use SQLDataSource, I'll have to refer you back to your earlier question about the same subject.

Upvotes: 0

Kostas Konstantinidis
Kostas Konstantinidis

Reputation: 13707

silverlight is client side you cannot use a sqldatasource

Essentially the features offered by Silverlight are just a subset of the full .NET framework.

If you need data in your Silverlight application you will have to call a Web Service that will hand you the data you need.

Upvotes: 1

Related Questions