Showing posts with label projects. Show all posts
Showing posts with label projects. Show all posts

Thursday, March 22, 2012

Taking over project

Anyone got any pointers on taking over code from another consultant? I have
some ASP.NET code, some assemblies with the projects to build the dlls in
the bin folder, and all the code and pages that are on the production
server. Now I am going to have to set up the development environment. This
does not look as simple as opening the project in VS.NET or is it?Hi Ron,

You might find it faster to create your own project in VS.NET and start
dropping the other person's .aspx and .vb files in it. See if you can get it
to build before you make any changes.

Although you can sometimes open someone else's solution or project, there
are usually path changes and Web site configuration setting that don't match
up. You spend more time trying to make it work than you would creating your
own project and copying the files.

Ken

"Ron Weldy" <ronweldy@.msn.com> wrote in message
news:%23xM8XvKAFHA.2552@.TK2MSFTNGP09.phx.gbl...
> Anyone got any pointers on taking over code from another consultant? I
> have some ASP.NET code, some assemblies with the projects to build the
> dlls in the bin folder, and all the code and pages that are on the
> production server. Now I am going to have to set up the development
> environment. This does not look as simple as opening the project in VS.NET
> or is it?
Good point. Thanks!

"Ken Cox [Microsoft MVP]" <BANSPAMken_cox@.sympatico.ca> wrote in message
news:u1skl0KAFHA.1400@.TK2MSFTNGP11.phx.gbl...
> Hi Ron,
> You might find it faster to create your own project in VS.NET and start
> dropping the other person's .aspx and .vb files in it. See if you can get
> it to build before you make any changes.
> Although you can sometimes open someone else's solution or project, there
> are usually path changes and Web site configuration setting that don't
> match up. You spend more time trying to make it work than you would
> creating your own project and copying the files.
> Ken
> "Ron Weldy" <ronweldy@.msn.com> wrote in message
> news:%23xM8XvKAFHA.2552@.TK2MSFTNGP09.phx.gbl...
>> Anyone got any pointers on taking over code from another consultant? I
>> have some ASP.NET code, some assemblies with the projects to build the
>> dlls in the bin folder, and all the code and pages that are on the
>> production server. Now I am going to have to set up the development
>> environment. This does not look as simple as opening the project in
>> VS.NET or is it?
>

Taking out the trash

Hi Nick,

What are located under the wwwroot directory is our own web projects. You
can remove them safely. However, some subfolders under this directory have
specific purpose and if removed, the associated function will be dump. For
example, the aspnet_client was created by the installation of ASP.NET
framework, which contains some client-side javascript for client-side
validation. These scripts may be used by
System.Web.UI.WebControls.CustomValidator, if the control was run at
client. If the folder of aspnet_client was removed, the client-side
validation will not work any longer.

For the folders such as images, you can removed it safely, for it is just a
recommended location to place some common images, such as gif, jpg and so
forth, that may be used in our web applications.

Does it answer your question? If I have misunderstood your concern, please
feel free to let me know.

Best regards,

Jacob Yang
Microsoft Online Partner Support
Get Secure! C www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.Hi Jacob,

> What are located under the wwwroot directory is our own web projects. You
> can remove them safely. However, some subfolders under this directory have
> specific purpose and if removed, the associated function will be dump. For
> example, the aspnet_client was created by the installation of ASP.NET
> framework, which contains some client-side javascript for client-side
> validation. These scripts may be used by
> System.Web.UI.WebControls.CustomValidator, if the control was run at
> client. If the folder of aspnet_client was removed, the client-side
> validation will not work any longer.
> For the folders such as images, you can removed it safely, for it is just
a
> recommended location to place some common images, such as gif, jpg and so
> forth, that may be used in our web applications.

Excellent, yes that has been very helpful, thankyou.

Nick.

--
/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
"No matter. Whatever the outcome, you are changed."

Fergus - September 5th 2003
/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\

Taking over project

Anyone got any pointers on taking over code from another consultant? I have
some ASP.NET code, some assemblies with the projects to build the dlls in
the bin folder, and all the code and pages that are on the production
server. Now I am going to have to set up the development environment. This
does not look as simple as opening the project in VS.NET or is it?Hi Ron,
You might find it faster to create your own project in VS.NET and start
dropping the other person's .aspx and .vb files in it. See if you can get it
to build before you make any changes.
Although you can sometimes open someone else's solution or project, there
are usually path changes and Web site configuration setting that don't match
up. You spend more time trying to make it work than you would creating your
own project and copying the files.
Ken
"Ron Weldy" <ronweldy@.msn.com> wrote in message
news:%23xM8XvKAFHA.2552@.TK2MSFTNGP09.phx.gbl...
> Anyone got any pointers on taking over code from another consultant? I
> have some ASP.NET code, some assemblies with the projects to build the
> dlls in the bin folder, and all the code and pages that are on the
> production server. Now I am going to have to set up the development
> environment. This does not look as simple as opening the project in VS.NET
> or is it?
>
Good point. Thanks!
"Ken Cox [Microsoft MVP]" <BANSPAMken_cox@.sympatico.ca> wrote in message
news:u1skl0KAFHA.1400@.TK2MSFTNGP11.phx.gbl...
> Hi Ron,
> You might find it faster to create your own project in VS.NET and start
> dropping the other person's .aspx and .vb files in it. See if you can get
> it to build before you make any changes.
> Although you can sometimes open someone else's solution or project, there
> are usually path changes and Web site configuration setting that don't
> match up. You spend more time trying to make it work than you would
> creating your own project and copying the files.
> Ken
> "Ron Weldy" <ronweldy@.msn.com> wrote in message
> news:%23xM8XvKAFHA.2552@.TK2MSFTNGP09.phx.gbl...
>