Dynamic upload folder

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
greenvox
User
Posts: 1

Dynamic upload folder

Post by greenvox »

In the latest version I ended up doing the following:

In Table-Specific > Common > Row_Inserting

//Enter your code here
string folderpath = null;
folderpath = "upload/" + <field>.DbValue + "/";
ImportFile.UploadPath = folderpath;
//End custom code

Note: Replace <field> with the field name you want to pull the value from.


Post Reply