I'm really new to .NET but I'm good with XSL. I'm trying to use XslCompiledTransform to run the XSL off of .NET. When I try to run my code I don't get any errors but the output is blank. Am I doing something really small and stupid or am I completely off? This is starting to drive me nuts and I've been searching all over for help. If you have any idea can you please help me? Thanks.
VB.NET:
Imports System
Imports System.Xml.Xsl ' contains class XslCompiledTransform
Partial Class Default2
Inherits System.Web.UI.Page
Sub Page_Load()
Dim transformer As XslCompiledTransform
transformer = New XslCompiledTransform() ' create transformer
transformer.Load("shs_nba_standings.xsl") ' load and compile the style sheet
transformer.Transform("NBA_TEAM_STANDINGS.XML", "standings.html")
Response.Write(System.IO.File.ReadAllText("standings.html"))
End Sub
End Class