A
AC
Trying to get anchor names to work - a simple html
concept - why so difficult?
original post:
concept - why so difficult?
original post:
-----Original Message-----
Quick and simple:
1)Drag two hypelinks to your page.(HyperLink1 and HyperLink2, for example)
2)Add names for them. For example, in Page_Load:
HyperLink2.Attributes.Add("name",HyperLink2.ID);
HyperLink1.Attributes.Add("name",HyperLink1.ID);
3) Ready. You have your anchors. If you don't want text in your anchors,
just clear the Text property of the HyperLinks.
Does it help you?
.