we can see variable's value using script task such as
MessageBox.Show(Dts.Variables["User::dateFrom"].Value.ToString());,
is there a way to see package parameter's value?
the above method didn't work for this:
MessageBox.Show(Dts.Variables["$Package::dateFrom"].Value.ToString());
can anyone help?
thanks