| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1312 人关注过本帖
标题:又是一个绑定多维数组的为题~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ...
取消只看楼主 加入收藏
ASP汽车
Rank: 1
等 级:新手上路
帖 子:197
专家分:0
注 册:2007-7-4
收藏
 问题点数:0 回复次数:3 
又是一个绑定多维数组的为题~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~··
string [] infoarray=chkchild.Split(new char[] { ';' });//将一串字符串遇到;就分割成新数组infoarray
for  (int i=0;i< infoarray.Length ; i++)
{
string [] infoarray2=infoarray[i].Split(new char[] { ',' });
}
比如传过来的字符串是
1,101,CW728957...C0,    1.00;1,171,CW728957...ss,   77.00;1,263,CW728957...jj,   56.00

我想用绑定显现为

厂商      件号            数量
101   CW728957...C0   1.00
171   CW728957...ss   77.00
263   CW728957...jj   56.00

请大家多多帮忙哦,谢谢
搜索更多相关主题的帖子: 多维 绑定 为题 string infoarray 
2007-12-12 12:18
ASP汽车
Rank: 1
等 级:新手上路
帖 子:197
专家分:0
注 册:2007-7-4
收藏
得分:0 
版主讲的很好,可是我还不是很理解哦~~
string[][] sqs = new string[3][]
  {
    new string[3][]=chkchild.Split(new char[] { ';' });
                            };
这样写?

学习ASP中.....难啊......
2007-12-12 15:43
ASP汽车
Rank: 1
等 级:新手上路
帖 子:197
专家分:0
注 册:2007-7-4
收藏
得分:0 
struct item
    {
        private string m_厂商;
        private string m_件号;
        private string m_数量;
        public ServerFile(string 厂商, string 件号, string 数量)
        {
            this.m_厂商 = 厂商;
            this.m_件号= 件号;
            this.m_数量= 数量;
        }

        public string 厂商
        {
            get { return this.m_厂商; }
            set { this.m_厂商 = value; }
        }
        public string 件号
        {
            get { return this.m_件号; }
            set { this.m_件号 = value; }
        }
        public string 数量
        {
            get { return this.m_数量; }
            set { this.m_数量 = value; }
        }
    }
List<item> list = new List<item>();
string   []   infoarray=chkchild.Split(new   char[]   {   ';'   });//将一串字符串遇到;就分割成新数组infoarray
for     (int   i=0;i <   infoarray.Length   ;   i++)   
{
    string   []   infoarray2=infoarray[i].Split(new   char[]   {   ','   });
    item im = new item(infoarray2[0], infoarray2[1], infoarray2[2]);
    list.Add(im);
}

this.DataGrid1.DataSource = list;
this.DataGrid1.DataBind();


我这样可以用DataGrid绑定么???
如果可以.Aspx 要怎么写哦

学习ASP中.....难啊......
2007-12-12 15:53
ASP汽车
Rank: 1
等 级:新手上路
帖 子:197
专家分:0
注 册:2007-7-4
收藏
得分:0 
版主真是好人

学习ASP中.....难啊......
2007-12-13 10:37
快速回复:又是一个绑定多维数组的为题~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ...
数据加载中...
 
   



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

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