| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1596 人关注过本帖
标题:为何出现:使用了未赋值的局部变量“MyText” 的错误???
取消只看楼主 加入收藏
foshan
Rank: 1
等 级:新手上路
威 望:2
帖 子:605
专家分:0
注 册:2006-3-1
结帖率:100%
收藏
 问题点数:0 回复次数:2 
为何出现:使用了未赋值的局部变量“MyText” 的错误???

String MyText;
//添加数据
if (RadioButtonList1.Text.ToString() == "工程报表" && RadioButtonList1.Text.ToString() == "实情汇报")
{ MyText = "工程报表及实情汇报"; }
if (RadioButtonList1.Text.ToString() == "工地检查通知" && RadioButtonList1.Text.ToString() == "工地检查通报")
{ MyText = "工地检查通知及通报"; }
DataRow addrow = ds2.Tables[0].NewRow();
addrow[1] = DropDownList1.Text + "年" + DropDownList2.Text + "月";
addrow[2] = RadioButtonList1.SelectedIndex + 1;
addrow[3] = "files/" + DropDownList1.Text + "年/" + MyText + "/" + FileUpload1.FileName;
ds2.Tables[0].Rows.Add(addrow);
GridView1.DataSource = ds2.Tables["baobiao"]; //显示,绑定
GridView1.DataBind();
//da2.Update(ds2, "baobiao");

-------------------------------------------

“/showbaobiao”应用程序中的服务器错误。
--------------------------------------------------------------------------------

编译错误
说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。

编译器错误信息: CS0165: 使用了未赋值的局部变量“MyText”

源错误:

行 126: addrow[1] = DropDownList1.Text + "年" + DropDownList2.Text + "月";
行 127: addrow[2] = RadioButtonList1.SelectedIndex + 1;
行 128: addrow[3] = "files/" + DropDownList1.Text + "年/" + MyText + "/" + FileUpload1.FileName;
行 129: ds2.Tables[0].Rows.Add(addrow);
行 130: GridView1.DataSource = ds2.Tables["baobiao"]; //显示,绑定

搜索更多相关主题的帖子: MyText 赋值 变量 局部 
2007-03-15 13:08
foshan
Rank: 1
等 级:新手上路
威 望:2
帖 子:605
专家分:0
注 册:2006-3-1
收藏
得分:0 
谢谢!就是这个问题,后来我写成 String Mytext="A";就没事了,但不知道原因所在。谢谢 上楼 朋友解释原因所在。

我是2.0超级菜鸟,请多多教导!
2007-03-16 10:49
foshan
Rank: 1
等 级:新手上路
威 望:2
帖 子:605
专家分:0
注 册:2006-3-1
收藏
得分:0 
明白了,谢谢!

我是2.0超级菜鸟,请多多教导!
2007-03-19 09:33
快速回复:为何出现:使用了未赋值的局部变量“MyText” 的错误???
数据加载中...
 
   



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

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