Hi all,
I am trying to set the text property to the asp:hyperlink control using
frmHourRegistration.hlProject.Text="Test"
But I am gettting the error as "Method not supported"
What I am doing wrong here ?
Thanks in advance
Dana
Printable View
Hi all,
I am trying to set the text property to the asp:hyperlink control using
frmHourRegistration.hlProject.Text="Test"
But I am gettting the error as "Method not supported"
What I am doing wrong here ?
Thanks in advance
Dana
hlProject.Text = "Test"
This one worked well
vb Code:
document.getElementById("hlProject").innerText="Value"
You should mention if you wanted this done for the client side rather than server side.
Oh I am extremly Sorrry . Thanks for spending ur time ..How I will do in the next time
Don't worry, sometimes we all make assumptions and things seem obvious to us but not to others. Over time you'll figure out yourself what information to include in your questions because you're smart like that.