首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

c#怎么实现这样的代码

2011-12-30 
c#如何实现这样的代码dimvotedsasdatasetnewdataset()voteds.ReadXml(Server.MapPath( db\vote.xml ))v

c#如何实现这样的代码
dim     voteds   as   dataset   =new   dataset()
      voteds.ReadXml(Server.MapPath( "db\vote.xml "))
voteds.tables(0).rows(0).item(0)+=1

select   case   radio1.selecteditem.value
case   "1 "
            voteds.tables(0).rows(0).item(1)+=1
case   "2 "
    voteds.tables(0).rows(0).item(2)+=1
case   "3 "
    voteds.tables(0).rows(0).item(3)+=1
case   "4 "
    voteds.tables(0).rows(0).item(4)+=1
end   select  
voteds.writexml((Server.MapPath( "db\vote.xml ")))
用C#做如何完成呢?

[解决办法]
DataSet voteds=new DataSet();
voted.ReadXml((Server.MapPath( "db\vote.xml "));
DataTable dt=voted.Tables[0];
dt.Rows[0][Convert.ToInt32(radio1.SelectedItem.Value)]=Convert.ToInt32(dt.Rows[0][Convert.ToInt32(radio1.SelectedItem.Value)])+1;
voteds.WriteXml((Server.MapPath( "db\vote.xml ")));

热点排行