asp:linkbutton

  • Thread starter Thread starter Shabam
  • Start date Start date
S

Shabam

There's an issue regarding the "asp:linkbutton" control. It does everything
via javascript if I'm not mistaken. The problem with this is that the
resulting page is not copy-able to, say another user, or via email for
others to click on.

In situations where you need it to be copy-able, what are the alternatives?
Will it require much work to re-code?
 
if you want a postback, only the <asp:button> works without a javascript
postback. if you want a link without postback, then use <a runat=server>.

-- bruce (sqlwork.com)
 
Back
Top