views:

40

answers:

1

Hi, I'm using Quartz.NET for a C# Windows Service I am creating. I want the administrators to be able to access a webpage that displays all jobs and associated triggers in a gridview so they can update or delete the jobs.

The issue I have is a lot of data I want to be displayed/editable is stored in the JOB_DATA field, which is a binary image field, so cannot be accessed easily using the gridview. How do I go about getting the JobDetail information for each row, and getting the data map for the grid?

Thanks

A: 

You'll find the way to do it here.

Spilarix
Thanks - problem I have is thatthe data in JOB_DATA isn't actually an image, and I need to get specific details from there to output into the grid. For example, there is a field called 'initial path' stored in there.
Chris