0
votes
0answers
106 views

updatepanel does not trigger repeater itemcommand

I just want to trigger the LinkButton in a repeater which has a OnItemCommand. But the page do post back. Here is my code: <asp:UpdatePanel ID="recommendedAdvertsUpPnl" runat="server"> ...
1
vote
1answer
277 views

Linkbutton in ASP.NET MasterPage and child Webform data control creating extra href=“”

EDIT Final: Just in case someone else sees this behavior, I wanted to explain my work around. I was using a placeholder on my Master page for the webform described below. I added a server control ...
0
votes
0answers
118 views

Clicking an Image in a LinkButton (Anchor) does full postback whereas the anchor does partial

I'm having a weird problem, I have a Repeater containing LinkButtons that contain Images arranged so the image will float in the centre of the LinkButton which appears as a box; the repeater is within ...
0
votes
1answer
141 views

How to highlight page numbers in PagedDataSource to paginate Repeater

I am using PagedDataSource To Paginate Repeater and it works fine but is there a way to highlight selected page number or make it bold. I tried css, itemcommand,and click event but no luck. Thanks in ...
0
votes
5answers
525 views

disable/hide all link button using jquery in repeater

I have a repeater which will have a link button per row here is the code: <asp:Repeater ID="rpt_OutstandingBCsForClient" runat="server"> <ItemTemplate> <div class="pay"> ...
0
votes
1answer
85 views

ASP.NET: How can I find my other row elements from LinkButton click?

I have a Repeater with a LinkButton for each row. I want to be able to read the values of some other controls (such as a Label) that are in the same row as the LinkButton. Here is the code I'm ...
0
votes
1answer
386 views

repeater linkbutton not firing

I have a repeater and inside it a linkbutton, the repeater is bound to OnItemCommand but the event is not firing here is my code: <asp:Repeater ID="rptList" runat="server" ...
1
vote
0answers
192 views

How do i show a panel using linkbutton, both in the same repeateritem?

I have a repeater in which there's a link and a hidden panel (and some other stuff). I want this link (LinkButton) to show my panel. This is what i've got: <asp:Repeater id="repeater1" ...
0
votes
2answers
856 views

Pass object as CommandArguement in a Repeater Link Button

I have a Repeater with a list of Customers. Against each customer there is a delete link button. As part of the linkbutton I want to pass the Customer object to the Command Arguement as follows (where ...
2
votes
2answers
1k views

ASP.net Visual Studio Repeater with linkbuttons

On the loading of a page, I want to access a list of names via an interface and create link buttons for each name in that list. Also clicking any of the link buttons leads to another page. I'm new to ...
1
vote
1answer
1k views

Repeater ItemCommand doesn't work when linked to the page

EDIT: I've found what's causing the issue, but I don't know why and I don't know how to fix it. I'm using JQuery Mobile to theme my site and when I remove this line: <div data-role="page" ...
3
votes
2answers
7k views

How to do AsyncPostBackTrigger for the LinkButton in the Repeater

In my page, I have an LinkButton inside repeater, but the UpdatePanel cannot find the LinkButton to AsyncPostBackTrigger. Here is mycode.aspx <asp:ScriptManager ID="Test1" runat="server" /> ...
0
votes
1answer
1k views

How to set the update panel trigger for the control inside repeater control?

I've used ajax update panel in my web page. I want to set the trigger on the update panel. I have asp.net link button control placed in the asp.net repeater control. The content on the update panel ...
1
vote
2answers
2k views

ASP .NET Repeater Control containing LinkButton

I am displaying a list of accounts objects in a repeater. Each object contains three fields namely studentID, studentName and studentAge. I have wrapped it with a link button. As a result the each ...
1
vote
3answers
2k views

onclick event of the link button inside the reapeator control fires at the time of binding data to reapeator control

I have a Linkbutton inside a Repeater control. My code in the aspx page : <asp:LinkButton ID="lnkBtnOpenSuplmnt" runat="server" Text= "OpensupLink" OnClientClick='<%# Eval("ClaimId", ...
0
votes
2answers
76 views

How can I pull ID from a form control in a datagrid / repeater (vb)

I have the following repeater <asp:Repeater id="weatherFeed" Runat="server"><ItemTemplate> <asp:LinkButton runat="server" id="PickInfo" onClick="Selection_PickInfo"> ...
1
vote
4answers
215 views

Webforms Repeater Link Question

I have a repeater that has a LinkButton in one of its columns and I have the onclick event wired up. When the user clicks on one of the options, I need to know in the event which LinkButton they ...
1
vote
2answers
690 views

How To Create A Nested LinkButtons Inside A Repeater?

I need to create a nested linkbuttons in a asp.net page that looks like a treeview, but all are linkbuttons. Example is shown below: ParentLinkButton1 ChildLinkButton1 ChildLinkButton2 ...
0
votes
1answer
2k views

how to find the selected link button value in the repeater control

I have an issue regarding link button, On my website i have got a product for sale page, which has a ryt side bar with filter options while the left side bar shows the filteration results. On my ryt ...
0
votes
1answer
416 views

ASP.NET Is there a way to add two “OnItemCommand” to my asp:repeater

I have two button with different commands <asp:LinkButton ID="lbEditDetails" Text="Edit..." runat="server" CommandName="EditDetails" CssClass="EditAdults" CommandArgument=<%# ...
0
votes
1answer
330 views

Apply tablerow click to all cells but one

I have an ASP.NET page that uses a repeater to populate a grid. There will eventually be a dozen or so columns, one of which is a linkbutton that does a postback (it removes the row). The rest of the ...
5
votes
4answers
10k views

Linkbutton inside Repeater for paging ASP.Net

I'm doing a webpage with a search that brings a lot of information from MSSQL. What I did is a stored procedure that return only the page to be seen on the website. Right now I'm working on the ...