Questions tagged [linkbutton]

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

443 questions
6
votes
2 answers

How to launching email client on LinkButton click event?

How can I launch an Outlook email window (similar to what mailto: does in a hyperlink) ? This needs to be done in a LinkButton click event.
user279521
  • 4,689
  • 21
  • 72
  • 107
6
votes
4 answers

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 paging as I need to show something similar than google.…
Gerardo Abdo
  • 1,000
  • 3
  • 9
  • 16
6
votes
1 answer

asp.net linkbutton in updatepanel doesn't fire

I have a asp.net web application. In my .aspx page I have a update panel in which I have 3 asp:LinkButton that should make a call to a c# code behind. The problem is that the onclick doesn't work. Here is how the code looks:
Apostrofix
  • 2,000
  • 8
  • 37
  • 68
5
votes
1 answer

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 the gridview is bound to, so I'm doing something…
sgibbons
  • 3,460
  • 11
  • 32
  • 31
5
votes
2 answers

Get LinkButton text using javascript

How can i get the text of LinkButton in .NET using javascript? Tried .innerHTMl, .innerText, .value...all not working....
Fire Hand
  • 21,886
  • 22
  • 48
  • 73
5
votes
6 answers

jQuery call __doPostBack on LinkButton

I have a LinkButton that I need to perform a click on to cause a postback. The actual link target is: javascript:__doPostBack('ctl00$c1$btnRefreshGrid',''); Clicking the link does perform the postback, as verified by a breakpoint in the code-behind.…
Mark Richman
  • 26,790
  • 23
  • 85
  • 150
5
votes
1 answer

Passing an id value to LinkButton server side event in gridview control

I am trying to pass a CustomerID value to codebehind, from my LinkButton in my gridview control. I tried the solution suggested here but it does not work. My gridview code is:
DNR
  • 3,636
  • 13
  • 52
  • 90
4
votes
2 answers

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

ASP Declaration: '"> I get Error: The server tag is not well formed. what the problem with LinkButton…
Michael
  • 11,410
  • 43
  • 120
  • 228
4
votes
4 answers

ASP.NET - Adding an UpdatePanel trigger to a LinkButton inside a gridview

I was trying to update the content of a modal dialog, and this code works for me:
aperez
  • 401
  • 2
  • 8
  • 17
4
votes
5 answers

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 a link button, I get the error…
CesarGon
  • 14,525
  • 6
  • 53
  • 81
4
votes
6 answers

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 where and what I am doing wrong. I need a solution…
Ashar Syed
  • 1,096
  • 6
  • 15
  • 26
4
votes
1 answer

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 Membership class function. Now I add a "Delete" linkbutton…
jenifer
  • 121
  • 1
  • 2
  • 7
4
votes
1 answer

How do I prevent postbacks from opening in new window after a LinkButton with target=_blank is clicked?

Summary: I have a GridView with a TemplateField containing only an ASP.NET LinkButton. My LinkButton looks like this:
lunchroom
  • 41
  • 3
4
votes
1 answer

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 click event so that a full postback is not done…
Richard
  • 27,531
  • 8
  • 67
  • 116
4
votes
4 answers

asp.net LinkButton HyperLink problem

The following two controls on my page: Open Open I set them during page load like this: OpenLB.PostBackUrl =…
Enriquev
  • 927
  • 1
  • 9
  • 26
1
2
3
29 30