Exforsys
+ Reply to Thread
Results 1 to 2 of 2

frames

This is a discussion on frames within the Microsoft .NET forums, part of the Programming Talk category; iam trying frames in asp.i have succeeded in retrieving the frames in my application fm .htm pages which i have ...

  1. #1
    Limca is offline Junior Member Array
    Join Date
    Apr 2006
    Answers
    21

    frames

    iam trying frames in asp.i have succeeded in retrieving the frames in my application fm .htm pages which i have made in notepad.But how i can get the aspx from as one of my frame,as i want the GUI in the frames.


  2. #2
    techvinny is offline Moderator Array
    Join Date
    Dec 2010
    Answers
    56
    You would call an aspx page in a frame in a similar fashion as you would call a htm page.

    Here's what you could do,
    HTML Code:
    <frameset cols="20%,80%">
    
      <frame name="leftframe" src="leftlinks.html">
    
      <frameset rows="15%,*,15%">
        <frame name="topframe" src="header.html">
        <frame name="contentframe" src="content.aspx"> <!-- This is how you could have an aspx in a frame -->
        <frame name="bottomframe" src="footer.html">
      </frameset>
    </frameset>
    HTH!!!


Latest Article

Network Security Risk Assessment and Measurement

Read More...