tags:

views:

41

answers:

3

I have been facing an error when I trigger XSLT from a C# code, It mentions something about dll file access failure every time, so just want to know whether this transformation code creates any dll files (in C:\Windows\temp directory) as such??

(I have mentioned the error and triggering program in my previous question),

A: 

May be it is mean that your system miss some DLLs necessary for XSLT transformation. To ensure use Microsoft's sysinternal utility (http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx) -start it before your app and get error report what DLL can't be loaded.

Dewfy
A: 

If you are using compiled transforms, I believe a DLL will be created for the XSLT files.

Oded
A: 

Dll files are created only if there is an Inline scripting being used .. otherwise (for simple xsl files without inline scripts) it is not required ..

Practically tested and proved.

infant programmer