How to enable frames in web mobile application?

R

Roman O

Hello.

I can insert <frameset> and <frame> tags using devicespecific filter and
<asp:xml> control. But they're situated within <body> tag and browser ignore
them.

Is another way to insert frame tags or how to remove <body> tag?

Thanks!
 
R

Roman O

OK! I've just solved this problem!
Use <mobile:devicespecific> and <scripttemplate>. Following code
demonstrates it:
<mobile:DeviceSpecific id="DeviceSpecific1" runat="server">
<choice filter="isHTML32"
xmlns="http://schemas.microsoft.com/mobile/html32template">
<scripttemplate>
<frameset border="0" rows="*,20">
<frame src="Content.aspx" scrolling="auto"
name="Content"></frame>
<frame src="Navigation.aspx" scrolling="no"></frame>
</frameset>
</scripttemplate>
</choice>
</mobile:DeviceSpecific>

Best regards, Roman Ogolikhin.
 

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

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top