473,804 Members | 2,255 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Binding a multi-dimensional array to a repeater

I'm trying to bind a 12x16 array to a repeater to display the information in
a table to have certain format. Right now all it does is display all the
array elements on individual rows. Does anyone know how to display the data
on just the 12 row?

thanks;

Here is my code:

Binding:
fismaRepeater.D ataSource = PIIArrayTotals
Page.DataBind()

Repeater:
<ItemTemplate >
<tr>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
</tr>
</ItemTemplate>

Nov 3 '06 #1
4 3444
Introduce a property that returns exactly what you want and databind to this
property rather than to the whole array.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
"De_Kabal" <u28637@uwewrot e in message news:68bfbfe768 26e@uwe...
I'm trying to bind a 12x16 array to a repeater to display the information
in
a table to have certain format. Right now all it does is display all the
array elements on individual rows. Does anyone know how to display the
data
on just the 12 row?

thanks;

Here is my code:

Binding:
fismaRepeater.D ataSource = PIIArrayTotals
Page.DataBind()

Repeater:
<ItemTemplate >
<tr>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
<td><%#Containe r.DataItem%</td>
</tr>
</ItemTemplate>

Nov 5 '06 #2
How do you do that or point me where I can get the information? Still a newb
at this.

thanks

Eliyahu Goldin wrote:
>Introduce a property that returns exactly what you want and databind to this
property rather than to the whole array.
>I'm trying to bind a 12x16 array to a repeater to display the information
in
[quoted text clipped - 32 lines]
> </tr>
</ItemTemplate>
--
Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...p-net/200611/1

Nov 5 '06 #3
Actually, after another look, I think it would be easier to make a runtime
DataTable object of the array and databind to the DataTable. The DataTable
will have exact format you need and the databinding will be trivial, like in
any msdn example.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
"De_Kabal via DotNetMonster.c om" <u28637@uwewrot e in message
news:68d6f68a92 e50@uwe...
How do you do that or point me where I can get the information? Still a
newb
at this.

thanks

Eliyahu Goldin wrote:
>>Introduce a property that returns exactly what you want and databind to
this
property rather than to the whole array.
>>I'm trying to bind a 12x16 array to a repeater to display the
information
in
[quoted text clipped - 32 lines]
>> </tr>
</ItemTemplate>

--
Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...p-net/200611/1

Nov 5 '06 #4
"Eliyahu Goldin" <RE************ **************@ mMvVpPsS.orgwro te in
message news:ON******** ******@TK2MSFTN GP03.phx.gbl...
Actually, after another look, I think it would be easier to make a runtime
DataTable object of the array and databind to the DataTable. The DataTable
will have exact format you need and the databinding will be trivial, like
in any msdn example.
Yes, absolutely!
Nov 5 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2353
by: Ann Morris | last post by:
INTRODUCTION One of the most powerful aspects of .NET and Windows Forms is data binding. Data binding is the process of associating user interface (UI) elements with a data source to generate a visual representation of data. Two types of data binding are available for Windows Forms: Simple Data Binding and Complex Data Binding. Simple data binding allows you to bind one data element to a control. In many situations you want to display...
9
10431
by: Zlatko Matiæ | last post by:
I was reading about late binding, but I'm not completely sure what is to be done in order to adjust code to late binding... For example, I'm not sure if this is correct: early binding: Dim ws As DAO.Workspace Dim db As DAO.Database Dim qdf As DAO.QueryDef Dim rs As DAO.Recordset
0
1454
by: Ian | last post by:
I have sub-classed the Page class in order to provide some base properties and methods that every page on my site will need access to. I would like to have these things show up in the Simple Binding window of the DataBindings dialog. I then found this site (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsintro7/html/vxurfDataBindingsDialogBox.asp) which says: The tree view displays these objects: the Page object; any...
1
2635
by: Bruce | last post by:
Hi, there, I meet a problem about comboBox binding. -------------------- Database: Northwind Tables: 1) Products 2) Categories I create a form (named "form1") to edit the record from Products table.
0
4809
by: JSantora | last post by:
Essentially, InsertAT is broken! For the past couple of hours, I've been getting this "Parameter name: '-2147483550' is not a valid value for 'index'." error. Apparently, its caused by having manually inserted a row in the table bound to the Combo box. The InsertAt Method of adding a row just does not work. Hope this helps anyone with this problem. john
1
1768
by: js | last post by:
I am using executeReader to get a SqlDataReader as in my code below. The SqlDataReader contains two tables. I am trying to bind each table to its respective dropdown list control. Thanks. //************* My code ************* System.Data.SqlClient.SqlDataReader dr = null; string strSQL = "SELECT id, iorg_name FROM int_org order by iorg_name;" + "select id, l_name from loc order by l_name";
1
1405
by: xtseeker | last post by:
We have a multi-threaded .NET application, the problem is that the previous programmer didn't care to have locks on the shared variables. Somehow the application doesn't end up in Locked state on a single CPU machine but I have tried running it on several dual core machines and it randomly freezes. I am searching for a quick-fix until I implement locks around all the shared variables in the entire application. Is there a way to bound the...
3
1645
by: sekshin8 | last post by:
I am trying to bind fields from the first three records of a query (three records will always be returned by the query) to three textboxes on a windows form. ex. Textbox1.text = row1 column1 Textbox2.text = row2 column1 Textbox3.text = row3 column1 another three textboxes would contain the values from the second column Textbox4.text = row1 column2 Textbox5.text = row2 column2
1
1560
by: Larry R | last post by:
Asp.net 2.0. Binding a Gridview. UNtil now, it had been simple BoundColumns, but now I need to have one column show the values of 3 columns ( they are in the same datasource). I thought that I should just be able to use a template sucha as : <asp:TemplateField d> <HeaderTemplate><asp:Label runat=server>Test</ asp:Label></HeaderTemplate> <ItemTemplate>
15
3117
by: Tom Gur | last post by:
Hi, What is early/late binding ?
0
9594
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10599
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10346
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10090
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9173
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7635
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6863
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4308
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.