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)

0
votes
0answers
25 views

LinkButton display at unnecessary time

I have a LinkButton(LinkButton_x) in my aspx page. i'm using this LinkButton to check all boxes in CheckBoxList. when i clicked on this LinkButton(LinkButton_x), code in partial class is executing to ...
-7
votes
0answers
19 views

performing two tasks on click event of link button [closed]

I want to open a file and enable a drop down list on click event of linkbutton in my aspx file using c sharp. But it only opens the file from given file path but do no enable the drop down. Linkbutton ...
1
vote
0answers
45 views

Dynamically Created Link Button Click event not firing

I have a GridView .In this GridView we are dynamically generating columns . We have also set Autogenerate columns to true in the GridView. Now the issue I am dynamically adding linkbutton to ...
1
vote
8answers
70 views

Not able to click asp link button

I have a linkbutton displaying the path of an uploaded document..The tag structure is like so <tr> <td> <asp:Label ID="lblDoc" ...
0
votes
3answers
52 views

The link button not rendered correctly

I have some code behind that I want to call using a LinkButton as it is easier than trying to use a HyperLink. Something Like this StringBuilder sb = new StringBuilder(); sb.Append("<p>Please ...
1
vote
1answer
32 views

How can I avoid PostBack on a LinkButton?

This is my LinkButton: <asp:LinkButton OnClientClick="Page_ClientValidate('validPanel1'); if(Page_IsValid==false) { console.log('error'); return false; }" ID="linkPanel1" ...
0
votes
1answer
32 views

Can I validate just a Page/Validation Group with OnClientClick?

This is my code: <asp:LinkButton OnClientClick="Page_ClientValidate(); if(Page_IsValid==false) { console.log('validate'); return false; }" ID="LinkButton1" ValidationGroup="validPanel1" ...
0
votes
0answers
56 views

C# linkbutton not firing in Gridview within Updatepanel

I'm hoping someone can help me. I have searched the web for a suitable answer but haven't found one. I have the following linkbutton in a gridview (GridView2) which is within an Updatepanel set to ...
0
votes
1answer
69 views

How to Open Datalist Link Button in New Tab in browser

I have a Datalist Which have some linkbuttons which redirects to other page with querystring . on click it is redirecting to other page with QueryString. If i am right click on the datalist ...
0
votes
0answers
55 views

On Day_Render in ASP Calendar I creating LinkButton and Button How run Click Event on this?

On Day_Render in ASP Calendar I creating LinkButton and Button, by this code: e.Cell.Controls.Add(new LiteralControl(("Suma = " + sumaProcentow.ToString() + "/8" + "<br ...
0
votes
1answer
407 views

LinkButton postback but click event not fired

Hi everyoneThis is my first post on stackoverflow (which btw is by far my favourite site for finding answers). After finally admitting defeat, I'm hoping someone can help me with this problem... The ...
0
votes
0answers
34 views

pie-css behavior does not work on asp.net button

My app currently only supports IE8 (officially). I need to add rounded corners to buttons similar to how you can with css3 so I'm using pie: http://css3pie.com/ My css defines some colors and fonts ...
0
votes
1answer
34 views

Hide linkbutton in Datagrid templatecolumn for the first row only

I'm trying to hide the "Delete" linkbutton in the datagrid for the first row only, but would like to display "Delete" linkbutton button in rest of the rows. How can i achieve that, any help is much ...
1
vote
6answers
536 views

OnClientClick does not works on asp.net LinkButton

I have an asp.net linkbutton, which contains the OnClientClick property, however the function within the OnClientClick never gets called, it directly jumps to OnClick function. Below are the 2 ways I ...
0
votes
0answers
114 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"> ...
0
votes
2answers
221 views

server side click event doesn't fire on LinkButton when PostBackUrl property has been set to another page

I put a linkbutton control named as "Logout" on my webpage with VS 2010. When users press the "Logout" linkbutton , I want the system to do two things. First is to trigger a server side click event to ...
0
votes
1answer
433 views

'WebForm_DoPostBackWithOptions is not definded

I´m getting an error on IE10 when I postback a form using the LinkButton <asp:LinkButton ID="lbSubmit" runat="server" CssClass="regular_btn" onclick="lbSubmit_Click"> ...
1
vote
1answer
287 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 ...
1
vote
1answer
265 views

ASP.NET C# target blank is not working on LinkButton

I have this linkbutton here... <asp:LinkButton ID="linkButton" CssClass="Button" runat="server" target="_blank">Button Text</asp:LinkButton> but the target blank does not work, it does ...
0
votes
4answers
179 views

Disable linkbutton (anchor tag) with jquery

I have trouble with my jquery disabling my linkbutton from clicks after the first click has taken place. The click should also remove and add some cssStyles. The problem is no that the linkbutton ...
0
votes
3answers
117 views

string text to many linkbuttons (asp.net c#)

I am retrieving data from table column where I have saved tags for the article, for example: "animals dogs cats" and showing this string text in linkbutton. If I click it, then page is redirected to ...
0
votes
1answer
48 views

The problemis that the button's OnClick works just fine in updating the database but using LinkButton has no effect

//LinkButton definition in aspx page <asp:LinkButton ID="linkUpdate" runat="server" OnClick="linkUpdate_Click">Update </asp:LinkButton> //linkUpdate_Click - the action i want to get ...
1
vote
1answer
181 views

asp.net on postback page title meta description not updating

There is a asp:LinkButton on asp.net web page. On click I am changing the page title and adding meta description, but it is not updating and reflecting in page view source. Page title and meta ...
1
vote
2answers
618 views

link button click not getting fired

I am sorry I am repeating this question. Rather, I am having to repeat it. The last time I posted this, I dint get an answer. I have googled for more than 3 hrs, dint find an answer. Heres the html ...
0
votes
1answer
510 views

Link button click event not firing in tab panel

I have a link button on a tab panel which displays a ModalPopupExtender. The problem is its onclick event is not getting fired. Whenever the link button is clicked, the modal popup shows (which should ...
1
vote
1answer
146 views

SignalR Update Panel Only Works First Time

I have the following code inside of an update panel. When the screen loads, the SignalR code works fine. However, after the first time, once I click a button, the SignalR code does not fire anymore ...
0
votes
2answers
336 views

OnClick events for dynamic LinkButton

I have a series of Hide/Show LinkButtons dynamically created. Each button corresponds with a GridView. I want to have the OnClick event of the button Hide or Show the GridView. How do I reference the ...
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
209 views

Getting the key value to pass in another page from a LinkButton in a Telerik grid

I have a grid which has the CarrierID specified as the "DataKeyNames" which is also an invisible property in the grid. I have a hyperlink column that when clicked should pass the value of the ...
0
votes
1answer
159 views

Linkbutton not disabling?

This is a weird one... On my webform I have a linkbutton. Depending on a value pulled from the database, this button is either enabled or disabled. The linkbutton launches a modal dialog. The ...
0
votes
0answers
31 views

link btn re-direct holding session variable

I want to use a link button to run a function 'LoadCheckListRecordEntry' which sets a session and re directs the user...However the page seems to be loading be the session is set?? ALthough the html ...
0
votes
1answer
243 views

ASP.NET call a function in code behind with LinkButton

I have this LinkButton here <asp:LinkButton runat="server" ID="EditBtn" CssClass="LinkButton" Text="Edit" Width="45px" OnClientClick="Profiles_Edit" CommandName="edit" /> and I am trying to ...
0
votes
0answers
63 views

Linkbutton click event inside of a RadListBoxItem

I am using Visual Studio 2008 & I have a RadListBoxItem control on my aspx page, and a linkbutton within the RadListBoxItem. When I click the LinkButton on the web page, the ...
0
votes
2answers
393 views

How to access a gridview delete button alongside an edit button

I'm running into an issue having a "delete confirmation" pop up if someone selects the "Delete" link in a gridview. More specifically, the pop up does work when clicking the "Delete" link, but the ...
0
votes
1answer
143 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 ...
1
vote
4answers
127 views

How to send a value from a LinkButton to the server?

I have many LinkButton such as: <asp:LinkButton runat="server" onclick="cmdCancellaComunicazione_Click">X</asp:LinkButton> they call the same server method, ...
0
votes
3answers
111 views

c# I need help inserting text into the code generated for a linkbutton in a gridview

Here is the .aspx code: <asp:GridView ID="gvLeads" runat="server" DataSourceID="sdsAdminLeads" AllowSorting="True" EnableModelValidation="True" DataKeyNames="leadKey" ...
0
votes
1answer
106 views

st_url function not working

I am trying to implement the share buttons found on sharethis.com into my site. I have them displaying fine, and they rediredt to the correct page. But. I cant seem to get the st_url to work, this is ...
2
votes
1answer
272 views

ASP.NET C# Keep Data in TextBoxes like on pressing BACKSPACE

I want to keep some informations in some TextBoxes if i go back to this page programmatically. On Page1 i enter the informations and if I click on the button i redirect to the next page, but if an ...
0
votes
1answer
277 views

Looking to make date field on a gridview a link button?

I'm displaying a gridview with several entries of data, one of the data fields is date, I want the user to be able to click any date on the gridview, and use it to start a process on the same page, ...
0
votes
0answers
155 views

How do i redirect a linkbutton inside a datalist in mvc

<asp:DataList ID="DataList1" runat="server" DataSourceID="SqlDataSource1"> <ItemTemplate> <asp:LinkButton ID="PostedByLabel" runat="server" Text='<%# Eval("title") %>' ...
0
votes
3answers
512 views

ASP LinkButton onclick show div

I'm new at Jquery and im trying to display a div on the LinkButton ClickEvent (If I use a button instead of a linkbutton it will work) This is my Jquery code <script type="text/javascript"> ...
0
votes
2answers
192 views

how to redirect page on default page using FormsAuthentication?

I am using a small application in VS2005. I created a login panel with using login control provided by visual studio. I used form authentication for this. Its working fine. Now I want to create ...
0
votes
1answer
100 views

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 ...
0
votes
0answers
137 views

LinkButton (Visual Studio)

really need help here.Have been spending 4 hours on this.As can bee seen from the code. If username is not equals to "ADMIN", linkbutton1 and linkbutton2 is true under the nested else statement. But ...
0
votes
1answer
249 views

jquery mobile linkbutton not working

I am starting with JQuery mobile, and I have a verty strange problem, my app is very simple, it's a page with a TextBox, a button and a Linkbutton: <div data-role="content"> <asp:TextBox ...
1
vote
1answer
2k views

ASP.NET: How to make (link)button function as hyperlink?

How do I use an asp:Button or asp:LinkButton as asp:Hyperlink? The existing Hyperlink just goes to another section on the same page: NavigateUrl="#Section2" I want to do this in the aspx file ...
2
votes
3answers
1k views

How to disable this LinkButton inside GridView control?

I am developing a registration system that lists events and the users will be able to register in these events. Each event has a specific number of seats. The problem that I am facing now is even when ...
1
vote
1answer
61 views

How to check if server control text contains html entity(Checkmark, cross etc.)?

Weird but it is becoming problem for me! I have added an html checkmark with this code ✔ to my linkbutton text but when I am trying to check this if(headerLinkButton.Text == "&#x2714;") ...
2
votes
0answers
331 views

ModalPopUp Displaying after LinkButton Postback

After spending hours on it i still couldnt find the Solution,Plaese Help. I am Developing a Website where I have a Gridview with data,i have a linkbutton as a templatefield in one of the Columns ...

1 2 3 4 5 6