| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 488 人关注过本帖
标题:[求助]未将对象引用到实例
只看楼主 加入收藏
longlongjiaz
Rank: 1
等 级:新手上路
帖 子:64
专家分:0
注 册:2006-11-11
收藏
 问题点数:0 回复次数:3 
[求助]未将对象引用到实例

private void getdata()
{
SqlDataAdapter mycmd= new SqlDataAdapter(mysql, mysqlcon);
DataTable dt= new DataTable();
mycmd.Fill(dt);
DataGrid1.DataSource = dt;
DataGrid1.DataBind();
mysqlcon.Close();

}


//判断是否为全为数字
public bool IsNumeric(string strNumber)
{
strNumber="";
Regex NumberPattern=new Regex("[^0-9.-]");
return !NumberPattern.IsMatch(strNumber);
}


private void Page_Load(object sender, System.EventArgs e)
{
try
{
//根据传入参数判断用户请求

string jobkinds = Request.Params["jobkinds"].ToString ();
string jobname= Request.Params["jobname"].ToString ();
int model = Convert.ToInt32(Request.Params["model"].ToString ());
if(IsNumeric(Request.Params["model"].ToString ()))
{
switch( model)
{

//用户根据工作类别查看工作职位

case 1:

mysql = "select newjobs.comid, newjobs.jobname, newjobs.jobkinds, " +
" newjobs.peoplecount, newjobs.pubtime, newjobs.endtime, cominfor.comname " +
"from newjobs, cominfor where newjobs.comid= cominfor.comid and " +
" newjobs.jobkinds='" + jobkinds + "' and newjobs.endtime>getdate() " +
"and newjobs.jobstate=0 order by newjobs.id desc";
break;


//用户根据职位关键字与工作类别组合条件进行检索

case 2:

mysql = "select newjobs.comid, newjobs.jobname, newjobs.jobkinds, " +
" newjobs.peoplecount, newjobs.pubtime, newjobs.endtime, cominfor.comname " +
"from newjobs, cominfor where m newjobs.comid= cominfor.comid and " +
" newjobs.jobkinds='" + jobkinds + "' and newjobs.jobname like'%" + jobname + "%' and " +
"endtime>getdate() and newjobs.jobstate=0 order by newjobs.id desc";
break;


// 用户根据职位关键字进行检索

case 3:
mysql = "select newjobs.comid, newjobs.jobname, newjobs.jobkinds, newjobs.peoplecount," +
" newjobs.pubtime, newjobs.endtime, cominfor.comname from newjobs, cominfor where " +
" newjobs.comid= cominfor.comid and newjobs.jobname like'%" + jobname + "%' and " +
" newjobs.endtime>getdate() and newjobs.jobstate=0 order by newjobs.id desc";
break;

//所有职位

case 4:
mysql = "select newjobs.comid, newjobs.jobname, newjobs.jobkinds," +
" newjobs.peoplecount, newjobs.pubtime, newjobs.endtime,cominfor.comname " +
"from newjobs, cominfor where newjobs.comid= cominfor.comid and " +
" newjobs.endtime>getdate() and newjobs.jobstate=0 order by newjobs.id desc";
break;
}

getdata();
}
}
catch(Exception ee)
{
Response.Write (ee.Message);

}

搜索更多相关主题的帖子: 实例 对象 
2006-11-19 15:55
メ冰枫ぱ雪
Rank: 1
等 级:新手上路
威 望:2
帖 子:326
专家分:0
注 册:2004-11-13
收藏
得分:0 
同志,那个位置也至少标下吧?

动态网页技术交流群:16449874 免费网络收藏夹:http:///Favorite
2006-11-20 00:15
bygg
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:乖乖的心中
等 级:版主
威 望:241
帖 子:13555
专家分:3076
注 册:2006-10-23
收藏
得分:0 
你的 mysql 是在什么地方定义的??

飘过~~
2006-11-20 12:02
wohemachen
Rank: 1
等 级:新手上路
威 望:2
帖 子:641
专家分:0
注 册:2006-9-21
收藏
得分:0 
去~
这种提问方式也太不负责任了吧~
你可是在向别人求助呀~

[glow=255,red,2]桃花坞里桃花庵,桃花庵里桃花仙;桃花仙人种桃树,又摘桃花换酒钱。[/glow]
2006-11-20 14:25
快速回复:[求助]未将对象引用到实例
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.027720 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved