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"?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top