Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We all use and like that to handle click event for button we can just click it and write a handler with server code in C# or vb.net.

But if we want to handle client event, javascript comes for help. And I wonder, how can we add designer ability to generate client handlers with javascript or some popular library like jquery.

So how I see it in perfect world, I'm selecting the button in designer, go to it's properties, then choose events like hover, enter or click and have a handler function in which I can write my code to handle it.

So the question is - how can it be done, to make this ability to autogenerate this empty function and make sure it will handle the exact event I need? I know how to handle this events in javascript, but this way seems more intuitive to me.

share|improve this question
Are you talking about an IDE for jQuery? – ryanulit Dec 23 '09 at 14:01
Not for jquery, but for any js code inside asp.net. – Yaroslav Yakovlev Dec 23 '09 at 15:22

1 Answer

up vote 1 down vote accepted

Microsoft's Glimmer writes jQuery. They also have a nice demo video on their frontpage. Glimmer is free, by the way.

share|improve this answer
Yes, thanks for answer! Glimmer is really a great thing. But you`ll need to merge the code with VS and asp.net as it generates html+css, no asp.net. So it would be nice to do something almost the same, but for visual studio and asp.net. – Yaroslav Yakovlev Dec 23 '09 at 15:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.