TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
goutham
NA
8
14.9k
asp.net #
Sep 1 2012 10:15 AM
i am doing my code in asp.net c# three tire architecture using linq . in this process
i have some datas in array list . i want to show that data into textbox pls help me? how to do that
this is my code:
ArrayList FLlist = new ArrayList();
using (Company_DetailsDataContext compnydb = new Company_DetailsDataContext())
{
var sa = from a in compnydb.sp_ShipViewControlFL() select new { a.Code, a.Name };
System.Text.StringBuilder sb = new System.Text.StringBuilder();
foreach (var item in sa) //.OfType<string[]>().SelectMany(i => i))
{
sb.Append(item);
}
txtshipcode.Text = sb.ToString();
txtshipName.Text = sb.ToString().Trim();
Reply
Answers (
1
)
Using IComparable for custom objects
need some code