I want to create a set of HyperLinks which call a function, i.e.
<asp:HyperLink onClick="myFunction('A')">A</asp:HyperLink>
But I want to do this for the entire alphabet. Is there some way I can iterate through the letters using a "For...Next" statement to generate these links?
<asp:HyperLink onClick="myFunction('A')">A</asp:HyperLink>
But I want to do this for the entire alphabet. Is there some way I can iterate through the letters using a "For...Next" statement to generate these links?