ohhhhhh... sorry... my mistake. no code needed in this approach..... ;)
.....
i find the solution..
Problem solved with code placed on page load on content page
in HTML
<iframe id="frame1" style="height: 150px" border="1" name="frame1"
runat="server"></iframe>
======================
if (Request.QueryString["id"].ToString() == "1")
{
frame1.Attributes["src"] = "http://google.com";
}
else if (Request.QueryString["id"].ToString() == "2")
{
frame1.Attributes["src"] = "http://yahoo.com";
}
else
{
frame1.Attributes["src"] = "http://xpode.com";
}
======================
Approach is ok but* can it be achieved via any other way...search engine
friendly.*.
..
jack
On Tue, Feb 23, 2010 at 11:35 PM, jack me <[email protected]> wrote:
> Thanks for reply..........
>
> Can i get a little bit code or link. I tried google but did not get . What
> is needed.......for iframe
>
> --
> Jack
>
>
>
> On Tue, Feb 23, 2010 at 1:03 PM, ravindra kumar <[email protected]>wrote:
>
>> Either you use frames or Chache the master page,
>>
>>
>> On Tue, Feb 23, 2010 at 12:50 PM, jack me <[email protected]> wrote:
>>
>>> Hi
>>>
>>> I have a menu in the master page, when clicked, different content page
>>> will be loaded, I wish the master frame (menu) stay the same way as in a
>>> post back case.
>>>
>>> Thanks,
>>>
>>>
>>
>>
>> --
>> Ravindra kumar
>> delhi
>>
>
>