Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
1.40/5 (3 votes)
See more:
Hi
I want to use frames in my web application. How can i use them in .NET 4.0 ??
Need Help urgent!!!

Thanking you
Posted

Hope this link will help you:

http://www.eggheadcafe.com/community/asp-net/17/10368600/frame-set-tag.aspx[^]


OR


XML
<frameset rows="14%,83%,4%" frameborder="0">
   <frame src="../Common/Header.aspx" frameborder="0" noresize class="pop_col_top">

   <frameset cols="22%,78%" class="pop_col_top"  frameborder="0">
           <frame name="left" src="Setup.aspx" frameborder="0" noresize class="pop_col_top cell_hspace1 frameborder">
           <frame name="myFrm" noresize class="pop_col_top frameborder">
   </frameset>

   <frame src="../Common/Footer.aspx" frameborder="0" noresize class="pop_col_top">
   </frameset>
 
Share this answer
 
v2
Comments
Member 11321901 28-Apr-16 8:17am    
adsfgdsf
Please refer following threads:
Working with Frames in .NET[^]
Working with frames and iframes with ASP.NET[^]

Check similar answers:
Click here 1[^]
Click here 2[^]
 
Share this answer
 
Just put this tag with src attribute in your .aspx page you can independently execute your external page.


XML
<iframe id="frm1" src="http://localhost/NetShopping/Home.aspx" width="1300px"  ></iframe>
 
Share this answer
 
v2
Use below tag for using IFrame

HTML
<iframe id="ifrmID" src="your page name" width="100%"  ></iframe>
 
Share this answer
 
Comments
nandhakumar.p.k 23-Jul-12 8:00am    
Where i put the frameset tag in asp.net source page
AshishChaudha 24-Jul-12 0:19am    
You can put iframe in a section, where you want show another page.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900