`
Questions tagged [aspbutton]
82 questions
0
votes
0 answers
Asp Link button post back works on production but not in localhost
I have a strange problem for asp link button post back in localhost only.But it is working good in production. When ever i click that button i get following error in java-script console.
This my button aspx code :
…

Sourav Mukherjee
- 61
- 2
- 12
0
votes
0 answers
asp:button not firing server function on second click
I have an asp:button:
On click of the button following function is called:
protected void btnschedule_Click(object…

Karthik Nagaraj
- 143
- 2
- 13
0
votes
3 answers
Button not processing onClick method
I have a button on an ascx control that calls a method on the onClick event:
Normally I use this…

webnoob
- 15,747
- 13
- 83
- 165
0
votes
0 answers
asp:ImageButton not firing OnClick event- it works randomly
Here is the code. I have also tried using oncommad property but still no luck.
These imagebuttons are the part of asp:repeater.
I am using this for online shop.

Satpal Singh
- 121
- 1
- 2
- 13
0
votes
2 answers
Sending java script variable value as part of PostBackUrl query string
I need to send a parameter value into a query string of a PostBackUrl method
within asp button.
The value I need is already being captured within a java script function shown below.
How do I send the value in hiddId as part of URL ? The below method…

CodeSharp
- 15
- 4
0
votes
1 answer
How do I put a Bootstrap Component inside an asp:Button in ASP.Net?
How could I add this Bootstrap component code, which is a search bar :

delano
- 106
- 1
- 1
- 11
0
votes
1 answer
In C#.net Adding Button Control from code behind, that is not appearing on page when it loads in browser
I am adding Asp:Button Controls in C# code behind. But when page loads in Browser, button doesn't appear on page. Here is my piece of code
html.Append("");
html.Append("
Student Name | Operations | "); while…
---|