Frames

  • Thread starter Thread starter Aras Kucinskas
  • Start date Start date
A

Aras Kucinskas

hello,

Is possible to open aspx page in in another frame not using HyperLink?
In other words, I want to open some aspx in not in the same frame by
pressing Button or LinkButton.

Thanks
 
Yeah u can!
Try Googling for an example!
Just remember u have to include target=name_of_frame
in your LINK.
Patrick
 
<a href="MyPage.aspx" target="content"></a>
Between the opening and the closing tag of the <a> element you may place
whatever you want - image, text. You may use the onclick event too.

Hope that helps!
Regards,
Kostadin Kostov
 
Thanks

Kostadin Kostov said:
<a href="MyPage.aspx" target="content"></a>
Between the opening and the closing tag of the <a> element you may place
whatever you want - image, text. You may use the onclick event too.

Hope that helps!
Regards,
Kostadin Kostov
 
Back
Top