码迷,mamicode.com
首页 > 移动开发 > 详细

【ASP.NET】website转webapplication

时间:2018-09-26 21:37:32      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:page   菜单   blank   oev   net   lob   miss   https   生成   

*以下操作都以VS2013为参考;

#新建两种web项目

1、添加webapplication项目;

技术分享图片

2、添加website项目;

 技术分享图片

#比较两种web项目新建的webform页面的不同点:

1、文件目录结构:

技术分享图片

  从图中可以看出webapplication项目中的webform页面多了*.aspx.designer.cs文件;

  *.aspx.designer.cs文件:通常存放的是一些页面控件中的控件的配置信息,就是注册控件页面。这个东西是窗体设计器生成的代码文件,作用是对窗体上的控件执行初始化工作;

1 <body>
2     <form id="form1" runat="server">
3     <div>
4         <input id="testinput" runat="server" />
5     </div>
6     </form>
7 </body>

 

 1 namespace WebApplication1 {
 2     
 3     
 4     public partial class App_Default {
 5         
 6         /// <summary>
 7         /// form1 控件。
 8         /// </summary>
 9         /// <remarks>
10         /// 自动生成的字段。
11         /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
12         /// </remarks>
13         protected global::System.Web.UI.HtmlControls.HtmlForm form1;
14         
15         /// <summary>
16         /// testinput 控件。
17         /// </summary>
18         /// <remarks>
19         /// 自动生成的字段。
20         /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
21         /// </remarks>
22         protected global::System.Web.UI.HtmlControls.HtmlInputText testinput;
23     }
24 }

 

2、aspx页面不同点

  website的页面:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Site_Default.aspx.cs" Inherits="Site_Default" %>

  webapplication的页面:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="App_Default.aspx.cs" Inherits="WebApplication1.App_Default" %>

  不同点:site的为codefile,application为codebehind;

3、aspx.cs文件的不同点

  website的页面:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Web;
 5 using System.Web.UI;
 6 using System.Web.UI.WebControls;
 7 
 8 public partial class Site_Default : System.Web.UI.Page
 9 {
10     protected void Page_Load(object sender, EventArgs e)
11     {
12 
13     }
14 }

  webapplication的页面:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Web;
 5 using System.Web.UI;
 6 using System.Web.UI.WebControls;
 7 
 8 namespace WebApplication1
 9 {
10     public partial class App_Default : System.Web.UI.Page
11     {
12         protected void Page_Load(object sender, EventArgs e)
13         {
14             this.testinput.Visible = true;
15         }
16     }
17 }

  不同点:webapp的页面都有命名空间,而website的页面没有;

#将website项目转换成webapp项目

方法一:

  将website项目的webform页面拷贝到webapp项目中,

  1)添加.aspx.designer.cs文件;

  2)在.cs文件中加入命名空间;

  3)修改aspx页面中的codefile为codebehind;

方法二:

  选中webapp项目,选择菜单栏中的“项目”,选择“转换为web应用程序”;

技术分享图片

技术分享图片

#参考:

https://stackoverflow.com/questions/19561982/visual-studio-2013-missing-convert-to-web-application

 

【ASP.NET】website转webapplication

标签:page   菜单   blank   oev   net   lob   miss   https   生成   

原文地址:https://www.cnblogs.com/willingtolove/p/9709536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!