I want to get the Controls-Array from a Frame-Object, but always there´s a compilation error.
Here´s a example:
Manialink:
Code: Select all
<manialink>
<frame id="Frame1">
<entry id="Entry1">
</frame>
</manialink>
Code: Select all
<script>
declare Text EntryContent;
EntryContent = Page.Controls["Frame1"].Controls["Entry1"].Value;
log(EntryContent);
</script>
I also tried the following code:
Code: Select all
Page.Controls["Frame1"]["Entry1"].Value
Can somebody please help me?