[Mono-list] Problem with XSLTTranfsorm

Ariel Rios ariel@gnu.org
Thu, 25 Nov 2004 17:49:48 -0600


I have problems using XSLTTransform. I have the following
code. I expect to be able to use the var modoAccion inside the
xslt but it is null. The code works correctly under .net.

modoAccion="INICIAL";
System.Console.WriteLine ("estoy aca" + modoAccion);
XsltArgumentList xslArg = new XsltArgumentList();
xslArg.AddParam("modoAccion", "", modoAccion);
xslt.Transform(doc1, xslArg,Response.OutputStream , null);

thanks
ariel