C# .NET - URL IS SPLITTING

Asked By srikanth nekkanti on 29-Nov-12 01:22 AM
Hi,

i have used <a onclick=javascript:test('https://www.anc.html')><span>click here</span></a>
but when i run i inspected link with fire bug the link is getting splitted like <a anc.html href="".....> like that and  i am not able to navigate can any one help me in this.


Thanks in advance
vicky srinivasan replied to srikanth nekkanti on 01-Dec-12 05:10 AM
try this
<a onclick="test('https://www.anc.html')"><span>click here</span></a>
srikanth nekkanti replied to vicky srinivasan on 19-Dec-12 02:20 AM
Thank you...