Control is not visible on a client

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have this ASPX code
<asp:xml id="xmlData" Visible="True" runat="server" EnableViewState="False"></asp:xml
How come document.all.xmlData says "undefined"?
 
By default Xml control sends the given XML to the client (applying XSL
transformation with default stylesheet or with given stylesheet), it doesn't
create any XML islands or other objects that would scriptable & available at
client-side.

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
http://blogs.aspadvice.com/joteke

I have this ASPX code:
<asp:xml id="xmlData" Visible="True" runat="server"
EnableViewState="False"></asp:xml>
How come document.all.xmlData says "undefined"?
 
Back
Top