关于2005转换2003代码的问题
由于以前的代码是2003写的
导致现在用VS2005转换后出现
错误
2 错误: 下列文件未迁移,因为未在项目文件中找到它们或者关联的“BuildAction”设置为“None”。
您可能需要在转换过程之后将这些文件从项目中排除掉,这样才能编译您的网站:
文件列表 == App_Code_Old1\assemblyinfo.cs,userdetail.aspx.cs,app_code_old\assemblyinfo.cs,App_Code_Old1\global.asax.cs,userdetail.aspx,
app_code_old\global.asax.cs。
请问那位大哥熟悉转换的帮帮忙咯
导致的结果是(在aspx中)
编译完成提示
<%@ Page language="c#" Codebehind="userdetail.aspx.cs" AutoEventWireup="false" Inherits="MMS.userdetail" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
这段中出现错误如下:
错误 1 未能加载类型“MMS.userdetail”。 C:\Documents and Settings\xlhua\桌面\仓库管理信息系统(c#)\WMS\userdetail.aspx 1
下面贴下代码
namespace MMS
{
/// <summary>
/// userdetail 的摘要说明。
/// </summary>
public class userdetail : System.Web.UI.Page
{
//为申明的类
但是在aspx文件中 提示无法引用该类
谢谢帮忙 .
------解决方案--------------------try:
public partial class 加个partial
------解决方案--------------------mark