Hello, Here is the start of an aspx monodoc for those that have xsp to try out.
It just uses monodoc --html and some javascript for the links. It likely has the same problems as the cgi one, but is only meant for local testing with xsp. A couple of known problems: no checking for non-monodoc urls maybe insecure so please only run locally uses Process.Start instead of its own provider/output what works: displays the docs at a url like monodocs.aspx?link=T:System.String internal links work just plop the two attached file to where you have xsp installed. Thanks to BenM and tberman for helping out.
function load ()
{
objs = document.getElementsByTagName("a");
for (i = 0; i < objs.length; i++)
{
objs[i].href = "monodoc.aspx?link=" + objs[i].href;
}
}
navLink(obj)
{
window.location= "monodoc.aspx?link=" + obj.href;
}
monodoc.aspx
Description: application/asp
