I implemented a SQLdataSource using stored procs without difficulty, but I am stuck on this one.
I have a GridView that is populated from a varing set of SQL selects that change based on the page and need from the originating page. (BTW this is working fine in NET 1.1).
Now with NET2 I'm getting this error: he type specified in the TypeName property of ObjectDataSource 'resultsData' could not be found.
Code snippets are below....
from my aspx page
<asp:GridView ID="GridView1" runat="server" DataSourceID="resultsData">
...
<asp:ObjectDataSource ID="resultsData" runat="server" SelectMethod="getPropResults" TypeName="test4"
from my code behind page I have the class as "test4" (which is the page name) with a function as "getPropResults"
Does the TypeName need to be qualified somehow?.
Any help will be great