Hi All,
I'm trying to write a fairly generic control to be used for paginnation. What i have at the moment is a load of properties to be able to define a css class, ID what to put on the pagination etc. I have now got to the bit where i want to be able to pass in the pageddatasoruce to be able to create the pagination, and to be able to use the IsFirstPage property of the pagedDateSource class.
When i pass it in as a property i get a (quite rightly) the error "Cannot create an object of type 'System.Web.UI.WebControls.PagedDataSource' from its string representation "
I am calling the ascx from my aspx like:
<cs:pagination runat="server" ID="topPagination" PagedDataSrc="_pdsAppeals" />
Where PagedDateSrc is the value that i want to pass across my pageddatasou ...
Go to the complete details ...