Ulhas Tuscano
Ulhas Tuscano

Reputation: 5620

How to load aspx pages in tabcontainer

I am using tabcontainer control of Ajaxtoolkit.I want to load aspx page for each of the tabs asynchronously i.e when i click on tab at that time an aspx page should be loaded

Upvotes: 0

Views: 2639

Answers (2)

shalin
shalin

Reputation: 452

Use this in 'Source' view of web page, Exactly in here...like this way...

            <iframe src="Default2.aspx"></iframe>

          </ContentTemplate>

Upvotes: 1

Muhammad Akhtar
Muhammad Akhtar

Reputation: 52241

You could use Iframe and set src="About.aspx"

<iframe src="About.aspx"></iframe>

Check for details http://www.w3schools.com/tags/tag_iframe.asp

Upvotes: 1

Related Questions