Tagged Questions

An ASP.Net webcontrol that renders as a link but has a button event model made available to the programmer.

learn more… | top users | synonyms (1)

6
votes
5answers
4k views

ASP.NET: asp:LinkButton with Javascript disabled?

i want to use an asp:LinkButton, since it looks like a link, yet also has server-side Click handler. But the web-server seems unable to detect if javascript is disabled on the client, and doesn't ...
4
votes
4answers
604 views

Postback fails on ASP.NET page when using Google Analytics

I am using ASP.NET to create a small web app. One of my pages includes some LinkButton controls, which used to work fine until I added a reference to Google Analytics code to it. Now, when I click on ...
3
votes
1answer
820 views

Wiring up JavaScript handlers after a Partial Postback in ASP.NET

I am trying to use LinkButtons with the DefaultButton property of the ASP.NET Panel in an UpdatePanel. I have read and used the various other answers that are around describing the wiring up of the ...
3
votes
4answers
3k views

How to let Html Link (anchor) do a postback to be like LinkButton?

I would like to ask how can i make an html anchor (a element) or even any object to do a postback or to execute an server side method? I want to create a custom button (a wrapped with some divs to do ...
3
votes
4answers
1k views

asp.net LinkButton HyperLink problem

The following two controls on my page: <asp:LinkButton ID="OpenLB" runat="server" >Open</asp:LinkButton> <asp:HyperLink ID="OpenHL" runat="server">Open</asp:HyperLink> I set ...
3
votes
2answers
7k views

Why won't my LinkButton inside a GridView raise its OnClick event?

I have a LinkButton inside a GridView (via an TemplateField). No matter what I try, the LinkButton will not invoke its event handler. I have tried both: A traditional event handler ("OnClick") A ...
3
votes
3answers
12k views

C# Dynamically created LinkButton Command Event Handler

So I have a weird situation here... I have an System.Web.UI.WebControls.WebParts.EditorPart class. It renders a "Search" button, when you click this button, it's clickHandler method does a DB search, ...
2
votes
1answer
28 views

How can i use Jquery ui dialog confirmation for gridview linkbutton?

I have a linkbutton in Gridview for delete items. I wanna use (jquery ui dialog confirmation) with this button. <asp:LinkButton ID="lnkDelete" Font-Size="12px" runat="server" ...
2
votes
1answer
72 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" /> ...
2
votes
2answers
145 views

Find gridview linkbutton value jquery

my gridview got few column.Column 1 is ID which is a linkbutton field , column 2 is CustName which also is a linkbutton field, column 3 is address which is a normal cell text .Here i got a question. ...
2
votes
5answers
3k views

Trigger asp.net link button click on enter key press

I have 2 asp text boxes that I have attached jQuery to trigger linkbutton server side click if enter key is pressed on any of the 2 text boxes. But this does not seem to work, Please help me explain ...
2
votes
3answers
444 views

Prevent a LinkButton double click inside an UpdatePanel

I have a LinkButton inside an UpdatePanel that I do not want the client to click more than once before the UpdatePanel refreshes its contents. Right now the link button initiates a partial postback ...
2
votes
2answers
4k views

Setting LinkButton's OnClick event to method in codebehind

I'm constructing a LinkButton from my codebehind, and I need to assign the onclick to a method, and pass a parameter with it too. I have this so far: LinkButton lnkdel = new LinkButton(); lnkdel.Text ...
2
votes
4answers
2k views

set linkbutton as default button for asp:panel in asp.net [closed]

Possible Duplicate: Link Button on the page and set it as default button, work fine in IE but not in Mozila How to set linkbutton as default button for asp:panel in asp.net? I know a button ...
2
votes
2answers
1k views

assigning css class to a linkbutton when clicked in asp.net

Consider i have 3 linkbuttons on a page, <asp:LinkButton ID="LB1" runat="server" CssClass="regular" OnClick="LB1_Click"> Today</asp:LinkButton> <asp:LinkButton ID="LB2" ...
2
votes
1answer
309 views

LinkButton child controls render

I want to have a LinkButton that adds 'span' tag around the text. protected override void Render(HtmlTextWriter writer) { Text = String.Concat("<span>", Text, "</span>"); ...
2
votes
2answers
721 views

How to make a link button visible after another button has been clicked in asp.net(vb) in button_click()

How to make a link button visible after another button has been clicked in asp.net(vb) in button_click() it says error as "Object reference not set to an instance of an object." i've done this in ...
2
votes
3answers
4k 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 ...
2
votes
6answers
5k views

Change the color of disabled link button

I have a link button in my grid view and it will be disabled when it meets certain condition. My question is, when the button is disabled, the color of the button will change to gray and i dun wan it ...
2
votes
1answer
2k views

Add LinkButtons during OnDayRender event of ASP.NET Calendar Control

So I need to add some link buttons to each cell of a asp:calendar control dynamically based on data in the database. I wondering what the best way to do this is so that the the link buttons will be ...
2
votes
4answers
3k views

Link Button on the page and set it as default button, work fine in IE but not in Mozila

I have a link button on the page and set it as default button, It works fine in IE but not working in Mozila Firefox. Does anybody have any clue how to resolve this issue?
2
votes
5answers
6k views

Why are linkbuttons not grayed out when disabled in FireFox?

Why when I set enabled=false on a button does it not render correctly in Firefox? Instead of graying out the link it is still blue. [UPDATE] ASP.net already removes such tags on the link so the ...
2
votes
1answer
1k views

ASP:LinkButton and Eval

I'm using an ASP:LinkButton inside of an ItemTemplate inside of a TemplateField in a GridView. For the command argument for the link button I want to pass the ID of the row from the datasource that ...
1
vote
1answer
30 views

Dynamically added LinkButton CommandName/CommandArgument settings being dropped

I am attempting to implement a pagination bar above a table. I have a static <ul> element on my page: <div><center><ul id="topnav" ...
1
vote
2answers
104 views

LinkButton not working within UpdatePanel

I'm building a table of data for price quotes (think table of Stock quotes) which needs to be refreshed every 5 secs. Each row has some data about one Stock in several columns and the last column in ...
1
vote
1answer
32 views

How to get the ASP.net objects to appear on the same line?

I'm sure this has been asked before but I'm not finding an answer...We have a clickable header column followed by an invisible image for sorting purposes. When a user clicks on the link the sorting ...
1
vote
1answer
199 views

linkbutton open new page and pass value without using query string and session

I'm working the linkbutton in a nested masterpage and want to pass a value to a new page . What I want to do is once I click the link button. a new page will be open and keep the current page. in ...
1
vote
3answers
85 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", ...
1
vote
1answer
129 views

How to edit the LinkButton visibility within a GridViewEdit in c#

I wonder how to edit a the visibility of a LinkButton within a GridViewEdit: I have got a LinkButton named "lbtnActivateConfig" in the ItemTemplate of a GridView in my aspx-File: ...
1
vote
1answer
42 views

How do I access properties of non-fired LinkButtons in an ASP RepeaterControl?

I have a navigation bar which is dynamically populated with LinkButtons by an ASP repeaterControl. I have no problem accessing, and setting properties for the clicked LinkButton. This I can do using ...
1
vote
4answers
59 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
148 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 ...
1
vote
2answers
365 views

Display hover box at mouse position over link button in asp.net

I am currently working on a C# ASP.net project. I have a data grid which contains a link button which displays the text bound from the database and binds a command argument for the record id. I want ...
1
vote
1answer
506 views

How to load a page in iframe which is in a modal popup extender on button click event?

How to load a page in iframe which is in a modal popup extender on button click event? Hi i have a grid with a link button in a page(say for example: "page1"), When i click the link button, i need to ...
1
vote
1answer
6k views

Getting selected row of aspgridview when click on link button to get hidden ID value

I am binding link button with title data in aspgridview and also binding hidden label which holds the ID value. when user click on this link button I would like to access the ID value. This I need ...
1
vote
1answer
2k views

How to use a LinkButton inside gridview to delete selected username in the code-behind file?

I have a "UserDetail" table in my "JobPost.mdf". I have a "Gridview1" showing the column from "UserDetail" table,which has a primary key "UserName". This "UserName" is originally saved using ...
1
vote
3answers
2k views

ASP.NET LinkButton Send Value to Code Behind OnClick

I have a ASP LinkButton Control and I was wondering how to send a value to the code behind when it is clicked? Is that possible with this event? <asp:LinkButton ID="ENameLinkBtn" runat="server" ...
1
vote
4answers
159 views

3 linkbuttons one event handler

I am a beginner in asp.net, I've done my research but not very clear. I have 3 links lkn1,2,3 Basically, I am looking at something like this: protected void lnkBtn_Click(object sender,EventArgs e) ...
1
vote
1answer
731 views

ASP.Net: Control MainPage from iframe in ModalPopupExtander

I have a page "Default.aspx". In this page is a ModalPopupControl with an iFrame: <div style="float: right; margin-right: 10px; margin-top: 8px;"> <asp:Button ...
1
vote
2answers
432 views

Whats the difference if I set hidden field value through html anchor OR asp.net linkbutton?

The problem is, I have a set of links onclick of those links I am setting the linkId into a Hidden field. First my link were asp:linkbutton ans onClientClick I was setting the hiddenfield value.that ...
1
vote
4answers
644 views

Dynamic TextBox on LinkButton click

I am creating dynamic TextBoxes in a page by clicking a LinkButton. However, after that, if the page is submitted, I can't find the items created dynamically, thus, can't send the information to the ...
1
vote
2answers
531 views

LinkButton not doing postback on second click

I want the clients to be able to download a PDF file. So I've put on a LinkButton with the code: Markup: <asp:LinkButton ID="lnkPrintHere" runat="server" OnClick="lnkPrintHere_Click" Text="Click ...
1
vote
2answers
1k views

Get LinkButton text using javascript

How can i get the text of LinkButton in .NET using javascript? Tried .innerHTMl, .innerText, .value...all not working....
1
vote
3answers
437 views

dynamically add linkbutton to asp.net page vb

I'm trying to programatically add some link buttons to a page. I'm trying to follow an example that I've seen online but can't get it to work. I want the linkbutton to call a sub e.g. ...
1
vote
2answers
626 views

Dynamically created LinkButton won't go into command event

I've asked this before, but sadly I'm still having issues and the issue wasn't resolved. Basically, I'm dynamically creating a LinkButton for each row of a table I am generating, and that button has ...
1
vote
1answer
503 views

How to disable link button in a gridview

I have one grid view that contains some template columns. In this, the first column contains check boxes named as Read, fourth and fifth column contains asp:link button. If the user clicks on the read ...
1
vote
3answers
118 views

How to print a LinkButton to page?

Say I have a dynamically generated LinkButton in my ascx.cs code-behind. How could I go about "printing" this control to my page? Obviously I can't do something like just print the Text property as I ...
1
vote
5answers
828 views

How to verify which LinkButton is clicked in asp.net on a Page_Load

How do I check which LinkButton is clicked in the Page_Load of the page. This is to avoid calls to service so that it only executes what is present in its event.
1
vote
1answer
1k views

changing color of particular link button

i am using a series of linkbuttons A-z which are dynamically created what i want on the click of each its text color change to something else to make it different from others what i am doing ...
1
vote
4answers
304 views

Why doesn't a LinkButton work with a table as it's content?

Using ASP.NET 3.5, you can create a LinkButton then define content inside of it. It works fine if I have div tags or any kind of text or anything, but if I use a table the click doesn't actually post ...

1 2 3 4