This is a migrated thread and some comments may be shown as answers.

[Solved] start a URL at the start of RadTabStrip

1 Answer 132 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Roderick
Top achievements
Rank 1
Roderick asked on 21 May 2009, 08:50 PM
How can I start a URL at the start of RadTabStrip put by default the first tab automatically loads the example Web page (www.google.com)

1 Answer, 1 is accepted

Sort by
0
Alex Lawson
Top achievements
Rank 1
answered on 26 May 2009, 02:00 PM
You could use an iframe\div, for example:

 

<div id="divDisplay" style="width:100%">  
<iframe name='ifmBlank' scrolling='no' width='100%' height='650px'></iframe> 
</div> 
 
<script type="text\javascript">  
 
document.getElementById('divDisplay').innerHTML = "<iframe name='ifmDisplay' scrolling='no' src='http://www.google.com' width='100%' height='650px'></iframe>" 
 
</script> 

 If you wanted to bind different tabs to web pages you could extend this using the OnClientTabSelected event 

Tags
TabStrip
Asked by
Roderick
Top achievements
Rank 1
Answers by
Alex Lawson
Top achievements
Rank 1
Share this question
or