Reputation: 5620
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
Reputation: 452
Use this in 'Source' view of web page, Exactly in here...like this way...
<iframe src="Default2.aspx"></iframe>
</ContentTemplate>
Upvotes: 1
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