找不到类型或命名空间名称(是否缺少using指令或程序集引用).在线等。。。不知道哪里出了错。 5

//文件名:YearCheckPrint.aspx.csusingSystem;usingSystem.Data;usingSystem.Configuration;us... //文件名:YearCheckPrint.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class CheckManage_YearCheckPrint : System.Web.UI.Page
{
private CheckManage_YearCheckForm MyYearCheckForm;
protected void Page_Load(object sender, EventArgs e)
{//将查询结果输出到Excel文件中
MyYearCheckForm = (CheckManage_YearCheckForm)Context.Handler;
string MySQL = MyYearCheckForm.MyPrintSQL;
this.Label1.Text = MyYearCheckForm.MyPrintTitle;
this.Label2.Text = MyYearCheckForm.MyPrintDate + " (考勤符号说明:出勤/,迟到>,早退< ,产假√, 事假#, 病假+, 婚假△, 旷工×)";
string MyConnectionString = ConfigurationManager.ConnectionStrings["MyPersonnelDBConnectionString"].ConnectionString; ;
SqlDataAdapter MyAdapter = new SqlDataAdapter(MySQL, MyConnectionString);
DataSet MySet = new DataSet();
MyAdapter.Fill(MySet);
this.DataGrid1.DataSource = MySet;
this.DataGrid1.DataBind();
this.Response.ContentType = "application/vnd.ms-excel";
this.Response.Charset = "";
//关闭 ViewState
this.EnableViewState = false;
System.IO.StringWriter MyWriter;
System.Web.UI.HtmlTextWriter MyWeb;
//将信息写入字符串
MyWriter = new System.IO.StringWriter();
//在Web窗体页上写出一系列连续的HTML特定字符和文本
MyWeb = new System.Web.UI.HtmlTextWriter(MyWriter);
//将DataGrid中的内容输出到HtmlTextWriter对象中
this.DataGrid1.RenderControl(MyWeb);
//把HTML写回浏览器
Response.Write(MyWriter.ToString());
}
}
展开
 我来答
破究活谁看0y
2013-05-17
知道答主
回答量:4
采纳率:0%
帮助的人:5915
展开全部
你这个文件是个分布类,名为CheckManage_YearCheckPrint。报错的类名为CheckManage_YearCheckForm,名称很类似,应该是同一命名空间下的另一个分布类的名字。你的整个类文件应该包含在命名空间内。具体做法是在using 语句完后的下一行加
namespace CheckManage(你的命名空间名)
{
另一个反括号}加在文件结尾
另一个分布类CheckManage_YearCheckForm实现文件里也要这样做
追问
你的qq呢?我帮别人改的。也找不着原因。可不可以把程序给您发过去,你给看下。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
精神小伙喵
2013-05-17 · TA获得超过684个赞
知道小有建树答主
回答量:746
采纳率:50%
帮助的人:731万
展开全部
你得根据你报错的行上所使用的类来判断
肯定是没有正确引用某个命名空间
如果是自己照着别的地方写的话,很可能会出现少引用的问题
更多追问追答
追问
private CheckManage_YearCheckForm MyYearCheckForm;
就这句出错了。
追答
你得知道CheckManage_YearCheckForm这是个什么类
然后引用这个类的命名空间才行
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
貌似year
2013-05-17
知道答主
回答量:18
采纳率:0%
帮助的人:11万
展开全部
你看一下当前类能访问CheckManage_YearCheckForm类吗。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友50d165b
2013-05-17 · TA获得超过122个赞
知道答主
回答量:243
采纳率:0%
帮助的人:133万
展开全部
你是哪句话报错啊,
追问
private CheckManage_YearCheckForm MyYearCheckForm;
就这句出错了。
追答
CheckManage_YearCheckForm 这个应该是你自己写的类吧!~你有引用过这个类的命名空间吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式