Web Matrix to VS2003

  • Thread starter Thread starter Steve Miller
  • Start date Start date
S

Steve Miller

Is there an easy way to convert aspx pages created in Web Matrix over to
Visual Studio 2003? VS seems to like code behind; which is something that
isn't in Web Matrix. Any help would be greatly appreciated.
 
You can run the pages in VS.NET from WebMatrix. To convert to a CodeBehind
model completely, you will have to copy the functions you created over to
the CodeBehind file and make sure the pages are linked in the @ Page
directive.

The easiest method, IMHO is to create a new page for each page and copy your
code over from the old app. This way you do not have to create the @ Page
directive for each page, but rather copy the tags to the new ASPX and the
code to the CodeBehind.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge

****************************************************************************
****
Think Outside the Box!
****************************************************************************
****
 
Back
Top