Link to home
Start Free TrialLog in
Avatar of miyahira
miyahiraFlag for Peru

asked on

Converting Frames to DIV

Hello,
I need a little help. Is it possible to convert those Frames to DIV?


<frameset border="0" frameSpacing="0" borderColor="#336699" rows="14,88" frameBorder="0" onkeydown="KeyPressed();">
<frame name="Top" src="Header.aspx" scrolling="no">
<frameset border="0" frameSpacing="borderColor=#336699" frameBorder="NO" cols="17,83">
<frame name="Left" src="menu.aspx" scrolling="auto" width="100%">
<frame name="Right" src="Page1.aspx" >
</frameset>
<noframes>
</noframes>
</frameset>

Open in new window

Avatar of Gary
Gary
Flag of Ireland image

Can be done with ajax, if you can use jQuery then that will make the coding even easier - can you?
Avatar of miyahira

ASKER

I'm afraid I can't use ajax or jQuery.

It's an old asp.net 1.1 application, due IE9 has problems with frames (session values get lost) then it's needed to change those Frames to something like DIV.
Ajax is javascript - are you saying you cannot use javascript?
If so then you have no options.
Otherwise you will have to rewrite all your code so you can place the code from the frames into one page.
Would you mind giving some example of using Ajax for replacing those Frames, please?
ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Best option would be to start here
http://www.w3schools.com/ajax/ajax_example.asp

It's not that hard and they explain and give nice easy examples.