The aspbutton tag has no wiki summary.
4
votes
4answers
911 views
e.CommandArgument for asp button is not working
I am developing a asp.net application using C#.
I created an .aspx page and placed four buttons on different locations on the page.
On server side, I want to use just one click event for all four ...
2
votes
1answer
490 views
Button Click Event Fire Only Second Click
In ASP.NET My button click event doesn`t work on first click. But it works on the second click only.
I hope u can help me.
1
vote
2answers
44 views
Changing Text of asp:Button using Jquery
Am trying to change text of an asp:Button using jQuery Like this
$("#<%=delButton.ClientID%>").attr('text', 'InActivate');
.....
<asp:Button ID="delButton" runat="server" ...
1
vote
3answers
52 views
ASP ImageButton vs Button
I am new to asp.net stuff and I am pretty confused on how to fix this problem. I have the back code written for everything and right now I am just making everything "look pretty". Originally I had an ...
1
vote
2answers
359 views
ASP:Button OnClick event not firing in one specific instance
What I have is a popup defined within a user control, that is opened within a taskbar user control, which is attached to a master page, such that:
MasterPage.TaskBarUC.PopupUC
Within the popup, ...
0
votes
1answer
46 views
Call OnClick for asp:button depending on jquery dialog result
I have an asp:button with appropriate OnClick. I also have a jQuery UI dialog that opens when said button is clicked. I would like the OnClick function to be called when the user clicks "Yes" in the ...
0
votes
0answers
71 views
asp:button width problem in IE7, adds extra 100px's to the left for some reason?
For some reason the asp:button's in IE7 add an extra 100px's (or so...) to the left of the button. this creates a problem for my css styling. Sure, I could go in and overwrite each individual button ...
0
votes
2answers
109 views
how to make asp:button a default button on entering text to asp:textbox
How can I set default button after text is entered into a text box. This is what I have so far. But it doesn't work
<td>
<asp:Label ID="displayrowLabel" runat="server" ...
0
votes
0answers
111 views
onkeydown that fires a next step for wizard but fails to go to next step
My problem lies with the onkeydown attribute applied to a button.
I have a wizard popup within my application and a certain step is displayed if a feature is turned on within the application.
1st ...
0
votes
1answer
1k views
close Jquery Modal popup Datalist button click
i am running into a problem that i have a jquery modal popup in my usercontrol that i show on a click of a button and user selects something from datalist and then i returned some value on the parent ...
0
votes
4answers
1k views
jquery asp.net button visibility
There is some code like this :
if ( bValid ) {
$( this ).dialog( "close" );
$("#btnExcel").show(); }
and .aspx look like :
<form id="form1" runat="server">
...
0
votes
2answers
207 views
Why does .NET render javascript for a button when there's a custom validator on the page?
I've got two questions - first of all, why does .net render a javascript onclick event for asp buttons when there's a custom validator on the same page, and secondly, how can I get rid of the ...
0
votes
3answers
129 views
Button not processing onClick method
I have a button on an ascx control that calls a method on the onClick event:
<asp:Button id="bUpdateText" onClick="FUpdate" ValidationGroup="Update" CausesValidation="False" Text="Update" ...
0
votes
1answer
120 views
.net Button fired only once
Okay, here is my problem:
I have a form that requires to have two fieldsets that are almost identical but that collect different sets of data. These are contained in an UpdatePanel. The user enters ...
0
votes
5answers
554 views
Css & Asp:Button conflict
I am working on a webpage and at some point I need to disable a asp:button.
This page uses a css file that has the following class:
.pagerLinkDisabled
{
display: none;
}
So every time I set a ...