Tagged Questions

19
votes
13answers
37k views

Disable the postback on an <ASP:LinkButton>

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 ...
1
vote
1answer
357 views

ASP.NET LinkButton doesn't work in iPad

I developped a website with ASP.NET framework. But after tests we saw that link button doesn't works in iPad how can i solve this problem? Thanks,
1
vote
2answers
492 views

default LinkButton on enter in a Master Page

I looked through and through and found no clean solution for this. A colleague of mine did find a pretty dirty solution but I don't see why the solutions in the links reference below does not work ...
1
vote
3answers
992 views

LinkButton's OnClick does not fire in IE8

The following works just fine in Chrome. <asp:LinkButton runat="server" ID="lbEdit" OnClick="lbEdit_Click"> <button type="button" class="edit"> Edit </button> ...
0
votes
2answers
36 views

How to pass parameter to Eval() in Link Button Control?

ASP Declaration: <asp:LinkButton ID="LinkButton1" runat="server" Text="edit item" onclick="'AddItem.aspx?catid=<%# Eval("CollectionID")%>'"></asp:LinkButton> I get Error: The ...
0
votes
3answers
55 views

Is this a good workaround for enter button submitting in a text box?

So I have a page, it had multiple textboxes, linkbuttons, and buttons. Currently, a user clicks a linkbutton "Edit" which allows them to enter data in that row, via textboxes. However, upon pressing ...
0
votes
1answer
455 views

Setting Click Event for LinkButton

I have a LinkButton within a Datagrid. I am having trouble setting a Click event for it. I will add the OnClick="Remove_Click" attribute in the HTML. But when I go to write the actual event, VB ...
0
votes
2answers
372 views

linkbutton oncommand issue

I am using 2 linkbuttons inside seperate dataitem server controls on my asp.net web page <asp:LinkButton ID="Item1" runat="server" CommandName="first" OnCommand="Item1_Onclick" ...
0
votes
1answer
203 views

LinkButton Clicked OnPreRender

I Have a link button when clicked i want to preform an operation inside the OnPreRender method... so how would i know if that linkbutton was clicked say my linkbutton's name is : lnkbtn1 Thanks in ...
0
votes
1answer
438 views

Link button changing color when any data pager event takes place

i have a alphabetic filter consist of 26 dynamically created link button on selecting any link button it is filtering the name of user's on the basis of alphabet and changing its color to orange to ...
0
votes
0answers
595 views

Event OnClick ASP:LinkButton not firing with jquery overlay

So i have this: <asp:LinkButton runat="server" id="lkbTomeChichi" class="modalInput contratacionVinculos" rel="#prueba" OnClick="PruebaBrava" >LinkPrueba</asp:LinkButton> <div ...
0
votes
1answer
654 views

ASP.NET LinkButton not rendered correctly in IE7

We have an issue (one of many) with a customer who switched to MS IE 7 just a few weeks ago (yes, yes, I know....... don't ask.....) In our ASP.NET app, we have a series of <asp:LinkButton> ...
0
votes
3answers
2k views

asp.NET LinkButton not working in Google Chrome

I have a page with several linkbuttons, and all of them is not working in Google Chrome. They are working well in IE and Firefox. Chrome Inspector can find the linkbutton and it has a ...