vote up 4 vote down star

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 the linkbutton control so I can skin it and disable it in some cases, so a straight up tag is not preferred).

How do I prevent it from posting back to the server?

flag

6 Answers

vote up 2 vote down check

ASPX code:

<asp:LinkButton ID="someID" runat="server" Text="clicky"></asp:LinkButton>

Code behind:

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        someID.Attributes.Add("onClick", "return false;");
    }
}

What renders as HTML is:

<a onclick="return false;" id="someID" href="javascript:__doPostBack('someID','')">clicky</a>

In this case, what happens is the onclick functionality becomes your validator. If it is false, the "href" link is not executed; however, if it is true the href will get executed. This eliminates your post back.

link|flag
vote up 1 vote down

In C#, you'd do something like this:

MyButton.Attributes.Add("onclick", "put your javascript here including... return false;");

link|flag
vote up 0 vote down

You might also want to have the client-side function return false.

<asp:LinkButton runat="server" id="button" Text="Click Me" OnClick="myfunction();return false;" AutoPostBack="false" />

You might also consider:

<span runat="server" id="clickableSpan" onclick="myfunction();" class="clickable">Click Me</span>

I use the clickable class to set things like pointer, color, etc. so that its appearance is similar to an anchor tag, but I don't have to worry about it getting posted back or having to do the href="javascript:void(0);" trick.

link|flag
OnClick binds the server-side event, not the client side event. onclientclick is the client event – Glenn Slaven Oct 7 '08 at 2:21
vote up 2 vote down

This may sound like an unhelpful answer ... But why are you using a LinkButton for something purely client-side? Use a standard HTML anchor tag and set its onclick action to your Javascript.

If you need the server to generate the text of that link, then use an asp:Label as the content between the anchor's start and end tags.

If you need to dynamically change the script behavior based on server-side code, consider asp:Literal as a technique.

But unless you're doing server-side activity from the Click event of the LinkButton, there just doesn't seem to be much point to using it here.

link|flag
I agree. Primarily, I want to use a skin I've already created for linkbuttons used elsewhere. – y0mbo Oct 7 '08 at 2:32
Can you not modify the skin, or base the styles for the given anchor off those used in the skin? – John Rudy Oct 7 '08 at 10:58
You might favor a linkbutton even if server postback is disabled when: 1) You still desire the benefit of a control implementing INamingContainer. Example, you have multiple user controls on a page where each contains a LinkButton that needs a unique ID. 2) You want to keep asp client validation. – eniac Oct 24 '08 at 18:55
vote up 1 vote down

I think you should investigate using a HyperLink control. It's a server-side control (so you can manipulate visibility and such from code), but it omits a regular ol' anchor tag and doesn't cause a postback.

link|flag
vote up 0 vote down

GENIAL las Respuestas. Thanks a lot!!!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.