I have Input A , Input B and Output C (all are different files) based on a condition, i can know if it failed, or passed etc (using c#)..
Now i need to report the results for all input files, in a user friendly way,
ie
Input A1 with Input B1 gives Output C1 -- Failed
Input A2 with Input B2 gives Output C2 -- Passed
where all the these names above should be hyperlinks for those files..
which is the best way to achieve this?? (since i need hyperlinks, its best if the report is opened it a browser) Is there any library/framework available already.. (i currently use c#)
Im looking for an opensource option if such a thing is available..
Thanks,
To make it look a bit professional, i used the approach used in the APIREPORT from codeproject site,
link
Thank You 🙂