If by "run time" you mean client side, then use javascript:
getElementById('hyperlinkid').click(); If you mean server side, then the
link must be runat=server and you'll have to call the event handler
explicitly -- which is not a good practice.
Instead, use a helper function:
sub Link_Click(sender as object,e as eventargs)
DoLinkClick
end sub
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.