I Have the c# code here.
using Microsoft.SqlServer.Dts.Runtime;
string filedts = "C:\\SSIS\\SQLtoFLAT\\PQFormTEST2.dtsx";
Application app = new Application();
Package package = app.LoadPackage(filedts, null);
DTSExecResult result = package.Execute();
I see all website code is the same like this, but when I run it I in ASP.NET, There have no any error, but result got 'failure'.
why? How to fix it?
Thanks for any Help, Julia