|
Question : Anyway to get href ID in code-behind?
|
|
I have an href like this: Summary>
But I want to set the name of it "Summary" in code-behind. I think i need to use innerHTML or something but not sure how..any ideas?
|
|
Answer : Anyway to get href ID in code-behind?
|
|
try adding the runat="server"
Summary>
then in codebehind...
SummaryLink.innerText="Summary"
|
|
|