1

vascript, how can I simulate clicking on a server-side link button by using eval function in client-side?

odiseh
  • 25,407
  • 33
  • 108
  • 151
  • You should give some more details, exactly what is the 'click' meant to do? – Naeem Sarfraz Jan 30 '10 at 08:37
  • What on earth is a "server-side link button"? – Arkaaito Jan 30 '10 at 08:43
  • @Arkaaito -- It's most likely a reference to ASP.NET, where there is a control referred to as a LinkButton. It's a client-side anchor that has server-side event bindings. Basically, ASP.NET maps the client onclick to a server-side C#/VB.NET function, which I'm guessing is what he's referring to. – T. Stone Jan 30 '10 at 09:15
  • Ahhhhh! That makes perfect sense. Sorry, I've been working at a PHP shop for the last *two years*, so any ASP.NET knowledge I once had has dribbled out my ears. (And since it didn't have the language tag, it didn't occur to me that he meant something language-specific.) – Arkaaito Jan 30 '10 at 09:19