`
Questions tagged [asplinkbutton]
139 questions
0
votes
1 answer
Opening gridview LinkButton not working for new window/tab
I have a gridview that's defined like so:
…

Kevin
- 3,209
- 9
- 39
- 53
0
votes
1 answer
find hidden field value when link button is inside nested repeater
…

rahularyansharma
- 11,156
- 18
- 79
- 135
0
votes
1 answer
LinkButton action repeating after clicking once
I'm using asp:LinkButton on my page and on click I download a file.But the issues is after
I have clicked the download Link Button if I click any other button on the page, it repeats the
download action. Can anyone throw some light about why this…

iJade
- 23,144
- 56
- 154
- 243
0
votes
2 answers
0
votes
1 answer
asp.net linkbutton properties
I have an app that, based on the .text property in a linkbutton (which is set programmatically, typically "Add" or "Save") the system adds or saves to the database. The linkbutton is standalone and not within a gridview or anything like that. Now…

user542319
- 403
- 2
- 5
- 14
0
votes
2 answers
LinkButton Event does not get called inside Gridview
I have table containing gridview inside an update panel "PanelSearch" whose display property is set to none.
When i first load the page i have added the table in a placeholder which is inside another updatepanel (main panel). I have a search button…

swapnil
- 81
- 1
- 3
- 10
0
votes
4 answers
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 javascript-postback attached for a postback call. The button is…
Magsom
0
votes
2 answers
linkbutton inside update panel not working
The page has table inside updatePanel and linkbutton inside tablecell:

Nurlan
- 2,860
- 19
- 47
- 64
0
votes
1 answer
OnItemCommand function not working with asp Linkbutton in Listview
I´m having some wierd issus with my asp:Linkbutton functionality in my asp:ListView.
Here is my code:
...…

tingason
- 133
- 1
- 2
- 12
0
votes
2 answers
Open file with link button
edited
Does anyone know how to upload/open a file in a shared location on a intranet with a link button either from the markup or programmatically?
c#
html
webforms
asplinkbutton

auwall12688
- 389
- 3
- 11
- 23
-1
votes
1 answer
how to add onclick event to a programmatically created link button in vb.net
I want to display the products which i get them from my DB using dataset in a table dynamically because of the number of products in each store is vary , and when the user click on a product from the table i will display the clicked product details…

user
- 621
- 15
- 46
-1
votes
3 answers
Link Button with query string in ASP.NET
I have a link button as follow
Recherche
i want get a query string from it

Jmocke
- 269
- 1
- 10
- 20
-1
votes
2 answers
Get values of Label - LinkButton - session
I have added a like button on my product listview, and the like button suppose to get the value of the ads title and Adsid and the userid whose clicked on this like btn and then the code should store this add in favorite table as it mention in the…

Mike
- 15
- 7
-1
votes
2 answers
Remove button look from asp:LinkButton works in localhost but not live
Comparing my localhost and my live websites show differently styled asp:LinkButtons.
I would like it to appear like the localhost example, but I am not sure what I am doing wrong.
I have attached the code and the images below.
HTML

eggy
- 2,836
- 3
- 23
- 37
-2
votes
2 answers
How to enable LinkButton after 10 seconds Asp.net?
When I click on LinkButton lbUpVoteUndo it should disable for 10 seconds. I have tried it in c# code-behind. Is there another way to do same thing?
protected void lbUpVoteUndo_Click(object sender, EventArgs e)
{
lbUpVoteUndo.Enabled = false;
…
user1773603