when you select add new item from solution window, teh dialog has a checkbox to create the code in seperate file...
Main Topics
Browse All TopicsGood-day,
I am using Visual Studio 2008 C#, and have a User Control called ImportData.ascx in ASP.NET.
I would like to generate a code behind file for ImportData.ascx, and I'm sure there must be an automated way to do this in VS 2008, but I can't seem to find it.
Any help would be much appreciated. (the more detail, the better...)
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
go to windows explorer, copy paste existing code behind, make necessary changes...
for example
lets say you have user.ascx
and you want code file this
for vb, default code behind is this
Partial Class WebUserControl
Inherits System.Web.UI.UserControl
End Class
create a text fiel, put these lines change the Class Name to something else, rename file as user.ascx.vb
open user.ascx file and point to the right file by
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="WebUserControl.a
modify CodeFile & Inherits parts... similar thing in C#. to better understand this, create a new control and check how it is done...
Business Accounts
Answer for Membership
by: kumar754Posted on 2009-10-28 at 07:19:20ID: 25683469
right click the usercontrol in solution explorer and click "View Code"