我对此进行了研究,但找不到解决我的问题的方法。
我的解决方案中有 2 个项目。
- 一个保存我的网页
- 另一个拥有我的 WCF 网络服务。
此 Web 服务具有查询 SQL Server 数据库并将行返回数据集中的方法。
我将其dataset
返回到前端并将它们直接绑定到GridView
. 我已经读过,不这样做并将其绑定GridView
到 anobjectdatasource(ods)
会使生活变得更轻松。
我正在尝试这样做。我将 ods 的 TypeName 设置为 Web 服务的类名。我正在将 ods 的 selectmethod 设置为我要调用的 Web 服务的方法。
我不断收到以下错误The type specified in the TypeName property of ObjectDataSource could not be found.
,我尝试Namespace.webservice
为 TypeName 做类名,但我得到了同样的错误。
我没主意了。有什么线索吗?
谢谢。