An ASP.Net webcontrol that renders as a link but has a button event model made available to the programmer.
Questions tagged [linkbutton]
444 questions
0
votes
1 answer
asp.net linkbutton client-side problem
I have this linkbutton with post-back disabled ... I should have done it with an html control but just did it that way .. It is toggling a language bar on top (marara.com.tr - language link)
It needs to be clicked twice in order to get the div to…
Emreko
0
votes
2 answers
Linkbutton created dynamically click event
I need some help to bind my dynamically created linkbutton to an event when clicked (inside a gridview)...
I saw many questions about that but always says that can be used the .OnClick += New EventHandler(event) and actually I've not the ".OnClick"…

B1GB0Y
- 43
- 3
- 12
0
votes
1 answer
linkbuttons on mouse over becomes bigger and font bolded
How can I make that when i pass the mouse over a ASPNET linkbutton it doesen't turn into a font bold?
a:hover{something here}
does not work

anmarti
- 5,045
- 10
- 55
- 96
0
votes
1 answer
ASP.Net LinkButton click event gives error
I have a linkbutton in a gridview control in my asp.net app that generates an error upon page_load ("subscribersearch.aspx"). How can I resolve this error?
HTML Code is:

DNR
- 3,706
- 14
- 56
- 91
0
votes
1 answer
OnClick event of dynamically created LinkButtons is not working
I’ve tried several solutions for this problem but none of them worked.
Basically, I have a table of employees and the user have the choice of adding an employee dynamically thru an update panel. Each employee is being added as LinkButton and this…

Kemoid
- 45
- 2
- 2
- 7
0
votes
2 answers
LinkButton Click Event
I have this problem ..
I have one "Login" linkbutton and one "UserList" linkbutton on one masterpage. When the user is logged in, and he clicks "UserList" linkbutton, the UserList Page which has the masterpage mentioned above, opens.(This i have…
Deepa
0
votes
6 answers
Add query values to an asp Link Button
I have this Link Button here.
And it doesn't work, it says "could not find…

user979331
- 11,039
- 73
- 223
- 418
0
votes
2 answers
ASP.NET: Wrong event is fired when I click a LinkButton
I have a "cart" Repeater, where every item has a couple of controls in it. The ones we're focusing on are two DropDownLists, a LinkButton and a TextBox. The lists are on one validation group and the button & textbox are on another.
Both lists have…

pilau
- 6,635
- 4
- 56
- 69
0
votes
1 answer
adding linkbutton dynamilcy to gridview. not firing.
I am dynamically adding a link button to every cell in a gridview. Adding the button works however the firing of the even handler doesn't. i need the linkbutton to call a function and pass some data for processing. My code is below. I have found…

thomasfagin
- 23
- 1
- 5
0
votes
4 answers
How to reference a linkbutton thats inside a asp:grid when its clicked
I have a ASP:grid which has a link button, i need to some how reference that on the code behind when its clicked but im struggling on the syntax
Heres my ASP:Grid i need to execute code in the code behind when that link button 'Re-Take' is pressed…

Code Ratchet
- 5,758
- 18
- 77
- 141
0
votes
2 answers
LinkButton not working properly. Changes my webpage's top and left panel layout
I've tried to use LinkButton to add "Previous" "Home" and "Next" to my webpage
and once I clicked on the link, it works properly on what it does, but it changed my website's layout, take out all the available menu items on my webpage's top and left…

Desmond.Tan
- 53
- 1
- 3
0
votes
1 answer
.Net Add LinkButton to a Placeholder in User Control
I want to create a common header user control for various master pages in a web application. The header is shared by masters and has common items such as the logo, navigation, and dynamic account buttons such as My Account and Sign Out.
I am adding…

User970008
- 1,135
- 3
- 20
- 49
0
votes
1 answer
Hiding LinkButton
In VB.NET, I have a LinkButton that, when clicked, creates a report. We want to disable this functionality based on whom is logged into the system. I have a session variable to indicate whether this should be visible or not but when I set…

Michael
- 1
- 2
0
votes
2 answers
ASP LinkButton command Sort causes the page to ignore Javascript?
So I have a table that has a linkbutton at the top of each column header. The linkbutton sorts the table by using commandname="sort". When I click one of these buttons the page does a post back with the desired results. However, if I click on a…

yaegerbomb
- 1,154
- 4
- 22
- 37
0
votes
2 answers
on click add class to aspx linkbutton with jquery
I have many link buttons with various contents like tabs, i need to apply a class to clicked link button with jquery, am using bellow function but its not working when post backing the page
$(function() {
$('a').click(function() {
…

Sam
- 146
- 15