How can I access data from another page in the same project?

  • Thread starter Thread starter DL
  • Start date Start date
D

DL

I have a project that has 2 pages, 'WebForm1.aspx' and
'DisplaySettings.aspx'. I have a button on 'WebForm1.aspx' that opens
'DisplaySettings.aspx' in another window. However, I need to be able
to access the options in a server select control on 'WebForm1.aspx'
from 'DisplaySettings.aspx'. Is there an easy way that I can do this?
Thanks in advance for any pointers.
 
Hi,

Is this in the client? if so you can access window.opener and access it,
like this:

window.opener.document.all[ "YourControlName"].options[ ]

Cheers,
 
Back
Top