Where are form files in the database

lawrence whittemore asked on March 19, 2014 09:58

Where are form files in the database. If not in the database where are the files being stored and how can they be accessed in a transformation?

Recent Answers


Brenden Kehren answered on March 19, 2014 10:12

What form files are you talking about? Code files for form controls? Files people upload within a form? If the latter, you can see where the files are stored by looking at a few settings within Site Manager>Settings>System>Files.

First is: Store files in file system. If that is checked then proceed to the Files folder setting and look for a location in there. If no value in there it is typically located in

0 votesVote for this answer Mark as a Correct answer

lawrence whittemore answered on March 19, 2014 10:47

I was looking for files uploaded to a biz form. I did find where the site was storing them. They're stored in the file system in the same folder the media library folder is being stored at. Now I just need to figure out how to access them via a repeater. I am able to get the GUID if that helps.

0 votesVote for this answer Mark as a Correct answer

Brenden Kehren answered on March 19, 2014 11:58

You should be able to use GetFileUrl(AttachmentGUIDColumnName) in an < a > tag like so: <a href='<%# GetFileUrl("AttachmentGuidColumn") %>'>Click Here</a>

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.