Ask a Question related to ASP.NET General, Design and Development.
-
Showjumper #1
What does 'You should pass XmlResolver to Transform() method' mean???
I've got the following code. But the XSLTransform line is underlined by the
blue squiggle and vs tells me
c:\inetpub\wwwroot\Sites\RiderDesign\articles\test .aspx.vb(37): 'Public Sub
Transform(input As System.Xml.XPath.IXPathNavigable, args As
System.Xml.Xsl.XsltArgumentList, output As System.IO.Stream)' is obsolete:
'You should pass XmlResolver to Transform() method'
What the heck does this mean? Thanks...
Dim XMLDoc As New XmlDocument
XMLDoc.Load(Server.MapPath("files/since1968_interview_zeldman.xml"))
Dim XSLTrans As New Xsl.XslTransform
XSLTrans.Load(Server.MapPath("files/nitf-interview-bio-to-html.xsl"))
Dim ms As New MemoryStream
XSLTrans.Transform(XMLDoc, Nothing, ms)
ms.Seek(0, SeekOrigin.Begin)
Dim sr As New StreamReader(ms)
PageContent.Text = sr.ReadToEnd()
sr.Close()
Showjumper Guest
-
Pass Class Object To FMS Using NetConnection.call Method
Hello All, I have a custom class that defines several methods on itself to retrieve its data. This class object is then sent to FMS via the... -
Pass bool parameter to web method
When I use bool parameter in my web method, it is always false regardless what I pass in. I can use int or char, but I don't believe that web method... -
#25831 [Ver->WFx]: overload/__call breaks method Pass by reference
ID: 25831 Updated by: moriyoshi@php.net Reported By: viking at dslnorthwest dot net -Status: Verified +Status:... -
[PHP-DEV] [Fwd: [PATCH] to fix #25831 [Ver]: overload/__callbreaks method Pass by reference]
Hi Alan, I've been investigating this problem, but still no luck even with your patch. It almost looks like pass-by-reference on... -
#25831 [Opn->Ver]: overload/__call breaks method Pass by reference
ID: 25831 Updated by: alan_k@php.net -Summary: Pass by reference doesn't work with subclasses of DB_DataObject...



Reply With Quote

