472,122 Members | 1,475 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,122 software developers and data experts.

How to access client side XML data island from server side?

I have an aspx which has some client side script.

The client side part of the page also features an xml data island [<xml
id='blah'....]

What I want to be able to do is to get at the data island from the server
side part of the page.

I've managed to do it with a simple text field using
client side
<input type="hidden" runat="server" id="funcParam" NAME="funcParam">
server side
Protected WithEvents funcParam As System.Web.UI.HtmlControls.HtmlInputHidden

then I can just access the control easily

How can I do the same with the xml data island?
What do I have to class the xml data island as?
Nov 18 '05 #1
2 1816
If you don't need to access the data island from the client script then you
can use the XML Control. This allows you to pass in a stylesheet and other
values from the server.

HTH

"adolf garlic" wrote:
I have an aspx which has some client side script.

The client side part of the page also features an xml data island [<xml
id='blah'....]

What I want to be able to do is to get at the data island from the server
side part of the page.

I've managed to do it with a simple text field using
client side
<input type="hidden" runat="server" id="funcParam" NAME="funcParam">
server side
Protected WithEvents funcParam As System.Web.UI.HtmlControls.HtmlInputHidden

then I can just access the control easily

How can I do the same with the xml data island?
What do I have to class the xml data island as?

Nov 18 '05 #2
Check out:
http://www.reflectionit.nl/DataIsland.aspx

Alternately:
You could copy the XML from the dataisland to a hidden text box to pass
it back to the server

Nov 18 '05 #3

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

3 posts views Thread by Robert Oschler | last post: by
55 posts views Thread by AnandaSim | last post: by
3 posts views Thread by Lyle Fairfield | last post: by
6 posts views Thread by Ken Allen | last post: by
4 posts views Thread by math.kiran | last post: by
3 posts views Thread by Simon Brooke | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.