Basic question...

G

Guest

I have a regular anchor in one frame targeting another frame. Since this approach always worked for me in static html and classic asp, I thought it would work in asp.net. However, it's not working (at least, not as expected -- the linked page is just popped up in a new window). I'm using v1.1 of the framework

Could anyone let me know what is causing this problem is or of a good reference regarding this problem

I've posted the (simple) code below

[framesets
<frameset rows="115px,*" border="0" frameborder="0"><frame id="frmmenu" src="menu.aspx" scrolling="no" /><frameset cols="256px,*"><frame id="frmalbums" src="albumsmain.aspx" /><frame id="frmmain"/></frameset></frameset

[problem anchor
<a href="settings.aspx" target="frmmain">Settings</a>
 
G

Guest

Never mind...stupid name attribute. I've gotten so used to being able to use the id instead of the name that I keep forgetting about the instances where an element needs to have a name.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Hyperlink & Frames 1
Frames alternative. .net????? 9
XHTML & frames 1
ASP.NET 2.0 Treeview SelectedNodeStyle Problem 0
frameset ortalama 1
Question for ASP.NET + HTML guru 6
Frameset 3
Frameset Issue 2

Top