Disable the postback on an

前端 未结 17 1575
隐瞒了意图╮
隐瞒了意图╮ 2020-12-03 00:18

I have an ASP.NET linkbutton control on my form. I would like to use it for javascript on the client side and prevent it from posting back to the server. (I\'d like to use t

17条回答
  •  时光说笑
    2020-12-03 00:47

    Just been through this, the correct way to do it is to use:

    1. OnClientClick
    2. return false

    as in the following example line of code:

    
    

提交回复
热议问题