how to create a dynamic name of a web control
Can someone please fix the following script for me.
I have a list of hyperlink...
eg. article1, article2, article3
when I click one of the links it is to activate a function call nav_clicked(<enter 1,2,3> ) protectedvoid nav_clicked(string articleID) { this.FindControl("article" + articleID).Visible=true; this.FindControl("article" + articleID)..Attributes.Add("style","color:white"); }Code Snippet
Unfortunately, I cant get the attributes part working.

