473,799 Members | 2,934 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Button events stopped working

My button events stopped working on a aspx form. Dont' know why. any
suggestions?

Nov 19 '05 #1
8 1170
If you're using VS.NET 2003, check the codebehind file's InitializeCompo nent
metho. There's a bug where sometimes VS.NET removes all the code that wires
up the event handlers.

-Brock
DevelopMentor
http://staff.develop.com/ballen
My button events stopped working on a aspx form. Dont' know why. any
suggestions?


Nov 19 '05 #2
WJ

"Brock Allen" <ba****@NOSPAMd evelop.com> wrote in message
news:96******** **************@ msnews.microsof t.com...
. There's a bug where sometimes VS.NET removes all the code that wires up
the event handlers.


The codes are still there. Just the event that was unhooked from the
"control". Especially when you perform a cut and paste of an eventfull
control from one location to the next, even in the same form. All you need
to do is click on the lightenning icon from the event property page, and
re-hook the event from the "onClick" property drop-down list.

John

Nov 19 '05 #3
> All you need
to do is click on the lightenning icon from the event property page, and
re-hook the event from the "onClick" property drop-down list.


And wait for the events to disappear another time.

The ultimate solution is to assign event handlers inside control tags in the
..aspx file.

Eliyahu
Nov 19 '05 #4
WJ

"Eliyahu Goldin" <re************ *@monarchmed.co m> wrote in message
news:uz******** *****@TK2MSFTNG P15.phx.gbl...

The ultimate solution is to assign event handlers inside control tags in
the
.aspx file.


What a bad practice! I would not do this. Code-behind should be in its own
nest. Not embeded in Html.

John
Nov 19 '05 #5
It's a good practice. It takes control from famously buggy Design View to
your hands. Many avoid using html view for simple reason of not
understanding how an aspx page builds and works.

Eliyahu

"WJ" <Jo*******@HotM ail.Com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..

"Eliyahu Goldin" <re************ *@monarchmed.co m> wrote in message
news:uz******** *****@TK2MSFTNG P15.phx.gbl...

The ultimate solution is to assign event handlers inside control tags in
the
.aspx file.


What a bad practice! I would not do this. Code-behind should be in its own
nest. Not embeded in Html.

John

Nov 19 '05 #6
WJ
"Eliyahu Goldin" <re************ *@monarchmed.co m> wrote in message
news:uQ******** ******@TK2MSFTN GP14.phx.gbl...
It's a good practice. It takes control from famously buggy Design View to
your hands.
Most bugs will go away in VS.net 2005. Try the recent beta, you will like
it.
Many avoid using html view for simple reason of not understanding how an
aspx page builds and works.


Very wrong perception! Separation of "codes" are main purpose of .NetFW.
Reasons:

1. Ability to derive cleaner codes.
2. Ability to separation duty between web designer and programmer.
3. Security: No business logic exposed to aspx or html part. This last one
is very important. Hide codes from hackers. This does not mean that your
system is absolutely, however, by hiding system logic, it makes hackers to
work harder.

BTW: What an obscure and convoluted HTML is !

John


Nov 19 '05 #7
> Most bugs will go away in VS.net 2005. Try the recent beta, you will like
it.
How does it help those who use VS 2003?
Many avoid using html view for simple reason of not understanding how an
aspx page builds and works.


Very wrong perception! Separation of "codes" are main purpose of .NetFW.


The question is not where to keep the code. The question is where to set the
properties. If you don't set event properties in the html, *you* don't set
them in the code-behind either. Design View is the one who does it.
According to your logic you should've suggested setting the properies in the
code by the programmer. BTW, I have absolutely nothing against this. What I
don't like in the Design View.

Eliyahu
Nov 19 '05 #8
>> Most bugs will go away in VS.net 2005. Try the recent beta, you will
like it.

How does it help those who use VS 2003?


It give you hope? :)

-Brock
DevelopMentor
http://staff.develop.com/ballen


Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2258
by: Max | last post by:
For some reason my button control just stopped working. In debug mode I found the _Click event is just not firing. When I click submit, the page just refreshes. Any idea what's going on? -Max
1
2818
by: Mark | last post by:
Hi - on my site, overnight, my submit buttons have suddenly stopped working in IE. Firefox is fine. The link button works perfectly - the two submit buttons however do not. It works in IE locally - can anyone please advise what may be wrong? Thanks, Mark ASPX:
0
1006
by: Hanover | last post by:
I have a very weird situation. I have several controls on a form, all of them have on-changed events that are supposed to pass their values to a dataset. The problem is, their events suddenly stopped firing as I was getting null values in my database. So I put it into debug mode and trapped for one of my drop-down lists. Low and behold, the event fired and my field was populated. So I tried
18
2988
by: Colin McGuire | last post by:
Hi - this was posted last weekend and unfortunately not resolved. The solutions that were posted almost worked but after another 5 days of working on the code everynight, I am not further ahead. If you do have any ideas I would really like to hear them. Thanks Colin - 0 - 0 - 0 - I want a glorified popup/context menu on a button that shows only when
7
2578
by: MgGuigg | last post by:
Hello all, This is my first time posting a question to this forum, so here is hoping I am following protocol. I am scraping the rust off my old Basic programming skills, and have just recently upgraded to VB.NET, and I have a lot of catching up to do. That being said, I have come a long way in a short while, however, I am stumped at the moment. I have read through days of posts, but have not been able to address my specific question, so...
0
961
by: matt sib | last post by:
Hi all. I just upgraded to wxpython 2.7 Its way cool. However, in one of my apps, i have embedded a flash activex control. I have had it working great in wxpython 2.6. After i upgraded to 2.7, i stopped receiving events from flash! But whats even weirder is that when i embed the flash activex in a wx.Frame instead of a wx.Panel, i do get the flash events! I am most mystified....does anyone have any idea here?
2
1420
by: rhyme2ri2 | last post by:
Hi!! I'm using asp.net 1.1 I have a datalist which gets dynamic data which is of unbound size may be small sometimes and may be very very long sometimes....... Whatever the size of data may be there is a button at the end of datalist...... When data is large the datalist text overlaps the button..... so what i did is added the button to the footer template of datalist!!!!!!!! But due to this the button stopped working..... It's...
3
5520
by: Jay | last post by:
I am on the 2.0 framework and have run the c:\windows\microsoft.net \framework\v1.1.4322\aspnet_regiis.exe -c and had no success. About half of the buttons on my webforms are firing and the other half are not, primarily anything on the Master is firing but those in the content pane are not. This was working fine yesterday!! I've reviewed all the code changes and can't seem to find a culprit. Here's one example of what I'm trying to...
5
5896
by: Tony | last post by:
I am continuing to develop an Access 2007 application which was originally converted from Access 2003. In Access 2003 I was able to disable the Access Close button in the top righthand corner of the screen. I have been unable to find any way to disable this button in Access 2007 and subsequently I have been forced to find ways to detect and handle the situations after the Access Close button has been clicked. I have been largely...
0
9688
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9546
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10490
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10260
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9078
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5467
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5590
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4146
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2941
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.