Event handler generation in Visual Studio 2012

Posted by Jalpesh P. Vadgama on ASP.net Weblogs See other posts from ASP.net Weblogs or by Jalpesh P. Vadgama
Published on Tue, 03 Jul 2012 18:53:19 GMT Indexed on 2012/07/03 21:16 UTC
Read the original article Hit count: 211

Filed under:
|

This post will be a part of Visual Studio 2012 feature series

There are lots of new features there in visual studio 2012. Event handler generation is one of them. In earlier version of visual studio there was no way to create event handler from source view directly.  Now visual studio 2012 have event handler generation functionality.

So if you are editing an event view in source view intellisense will display add new event handler template and once you click on it. It will create a new event handler in the cs file. It will also put a eventhandler name against event name so you don’t need to write that.

So, let’s take a simple example of button click event so once I write onclick attribute their smart intellisense will pop up

.

Event handler generation in visual studio 2012 - What's new in visual studio 2012

Now once you click on <Create New Event> It will create event handler in .cs file like following.

Event Handler in asp.net with visual studio 2012 - What's new in visual studio 2012

It will also put submitButton_Click on onClick attribute.

Create event new handler in visual studio 2012 - new feature of visual studio 2012

Hope you liked it. Stay tuned for more. Till then happy programming..

Shout it

© ASP.net Weblogs or respective owner

Related posts about ASP.NET

Related posts about VisualStudio2012