I have created new simple module to manage articles.
Article(ID, Title, Body, CategoryID, TypeID, DateCreated, DateUpdated)
So far, under App_Code I have 4 classes to manage articles - methods to get One article, List of articles, and create/update/delete.
Also, under DesktopModules, I have Article folder with ViewArticle.ascx and EditArticle.ascx controls.
Now, I created a page in site's admin and I have placed my module on that page. The module is working correctly, I have GridView and articles are shown like a list. But, my question is: how can I view specific Article details from that list? To what page should I link each item in the list?
I