本人对.net不熟悉。只是想配置能用就行。现在出现以下问题,请各位指教。
Compilation Error 
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0234: The type or namespace name 'ST_main' does not exist in the namespace 'ST_GROUP.Blog' (are you missing an assembly reference?)Source Error: Line 26:  {
Line 27:  // 在此处放置用户代码以初始化页面
Line 28:             ST_GROUP.Blog.ST_main ST_login = new ST_GROUP.Blog.ST_main();
Line 29:             ST_login.check_Login();
Line 30:             string ST_dns = ConfigurationSettings.AppSettings["conn"];
 Source File: e:\web\第7章 BLOG\源代码\ST_Blog\ST_write.aspx.cs    Line: 28 

解决方案 »

  1.   

    缺少引用重新生成一下项目为WEB层添加ST_main引用
      

  2.   

    'ST_main'  这个命名空间的问题
      

  3.   

    'ST_main命名空间不在
    添加相关DLL引用
      

  4.   

    The type or namespace name 'ST_main' does not exist in the namespace 'ST_GROUP.Blog' (are you missing an assembly reference?)
    命名空间St_main不存在'ST_GROUP.Blog' 
    是否丢失配置文件?
      

  5.   

    缺少引用 更新的dll没有替换吧
      

  6.   

    请问一下,具体怎么操作,本人对.net可以说一点都不清楚。