Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert Asp.net website into Asp.net Web application? [closed]

Tags:

c#

.net

asp.net

I am currently working on Asp.net(3.5) website but the website is growing.I want to convert the website into Asp.net application.I am a bit late in taking this decision but any ways.

While trying to do the same by following this great article and the responses to this question I got many exception which made my life hell.Once thought of creating web Application from scratch but it will take huge time and will be a rework.This made me to ask few question to myself which I bing but didn't get satisfactory answers.

Here they come:

  1. What are the key things I should take care before doing the same?

  2. How should i start ?

  3. I need to rethink about the website architecture?

like image 525
niteshkodle Avatar asked May 23 '15 05:05

niteshkodle


1 Answers

Create a New Web Application in VS 2013.

  1. Using Windows Explorer copy all your files into you project folder.
  2. In VS 2013 solution explorer show all files.
  3. Select the files and folders - right click include in project.
  4. Right click the project solution explorer and select Convert to Web Application.

There are quite a few small differences, such as the App_Code folder will get renamed to old_app_code - that surprisingly doesn't cause any errors. The TypeName on your object data sources and the inherits on the @Page tag might need the [ProjectName]. prefix appended globally.

like image 157
GANI Avatar answered Oct 13 '22 11:10

GANI