0

I have a view in my ASP.NET Core application.The view split into 2 div containers Left and right containers in the 1st container i load some stuff with java script Now in my seconded container i want to load a different website example http://example.com

     <div class="page-container">     
        <div class="panel-container">       
            <div class="panel-left">            
            panel-left
            </div>
            <div class="splitter">
            </div>
            <div class="panel-right">
               I want to load a website here (http://example.com)
            </div>
        </div>      
    </div>

1
  • Then what is <iframe> element for? Commented Jul 31, 2019 at 13:54

1 Answer 1

2

You can use an iframe tag:

<iframe src="https://www.w3schools.com"></iframe>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.