sbaser 0 Newbie Poster

Hello,
I designed a web page (index.aspx) in C# showing the country map and the cities. There are city names (linkbuttons with click event) under the country map. On the country map, I have city maps and their links:

<body MS_POSITIONING="GridLayout">
<map name="Map1">
<area shape="POLY" coords="41,25,48,20,54" href="london.aspx">
</map>

<form id="Form1" method="post" runat="server">
<asp:LinkButton id="link_london" style="Z-INDEX: 130; LEFT: 72px; POSITION: absolute; TOP: 536px" runat="server" CssClass="link_city">London
</asp:LinkButton>
</form>
</body>

What I want to do is, when I click in the city border, related linkbutton's click event would be triggered. Shortly, it will work as if the linkbutton has been clicked.

Which code will do this?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.