i am new to ssis and i am facing an issue in script task. In my package.dtsx, i have a script task and i am assigning a variable to get the ssis variable
string strSourceFile = Dts.Variables["VaFilePath"].Value.ToString().Trim();
strSourceFile shows the file path "D:\Test" correctly. below the script task i am using data flow task to do one process and it works fine. After data flow task i am using another script task and i am assigning a variable to get the ssis variable
string strSourceFile = Dts.Variables["VaFilePath"].Value.ToString().Trim();
but strSourceFile is empty. i am not able to figure out the reason Please help
VaFilePathbetween the first Script Task and the last Script Task?