Still a newbie..
Developed a simple module (DNN 5.2.2 C#) that uses data / links found in an XML file to create a list of Links on a page (Just like the DNN links module). The XML file contains links of multiple categories (Links to internal sites, external sites, Index, PDF's etc). I would like to let the page creator to select the links "Category" ('Internal', 'External', 'Index links', 'PDFs'..etc) which I am hoping could be passed as a module setting/parameter at the time of developing the page. The module can be added multiple times on a page showing differnt types of links in each instance. I have read a few posts that talk about 'adding custom settings' to mosule.
Please point me in the right direction, Tutorial or useful links. Appreciate any and all help very much.
Using a script like the one below within the (view)Module.ascx:-
ul
DataFile="~/XML/myLinks.xml"
runat="server"
XPath="/[@catogory='myLinksType']/link">
ataList id="myLinksID" DataSourceId="mySourceID" runat="server" RepeatDirection="Vertical" RepeatLayout="Flow">
<a href="javascript:confirmprompt('<%# Eval("leaving") %>','<%# Eval("url") %>','<%# Eval("newwindow") %>')"><%# Eval("name") %><%# Eval("notes")%>
ataList>
ul