User-1757793930 posted
You could always name your file what the description is. But then you might have long file names. Like below
This_Is_Our_First_Camping_Trip_With_The_Boys.jpg. Then your code behind could do the below function. Which removes the underscores and the file extension.
string title = imageFileName.Replace("_","");;
title.Replace(".jpg","");
If you like i could write a quick xml function for you that will pull a title and description out of an xml file