用逗号分隔的值绑定

用逗号分隔的值绑定

本文介绍了如何用逗号分隔的值绑定多行文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有人,

我有一个多行文本框,必须用逗号分隔的值绑定.
谁能建议我或给我很好的链接...



问候,

Raj Bangalore

Dear All,

I have a multiline textbox that has to be bound with comma separated values.
Can anyone please suggest me or give some good links ...



Regards,

Raj Bangalore

推荐答案

char[] separator = new char[] { ',' };
                string[] strProductId = YourString.Split(separator);
                for (int i = 0; i < strProductId.Length - 1; i++)
                {
                    int ProdId = Convert.ToInt32(strProductId[i]);
                    }


这篇关于如何用逗号分隔的值绑定多行文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 01:06