Forms Data Controls :: Accessing A Property With Datalist / Binding The Data On The Display All The Parent Table Fields Can Be Rendered?

Jun 7, 2010

Am using datalist to create a kinsd of message board, in the back end am having two tables one for the parent comment , and other for the child comments

The data source is extracted by LINQ to SQL with the load option , so I get everthing when I debug on the code behind , and I can see all the fields each parent comment and the child comments.

the problem is with binding the data on the disply for example all the parent table fildes can be rendred without any problems:

<%# DataBinder.Eval(Container.DataItem, "comment1Parent") %>; "showing me the orginal post"

Problem here:

<%# DataBinder.Eval(Container.DataItem, "Childcomment") %> is not rendred and I got this error msg:

DataBinding: 'DataAccessLayer.Comment' does not contain a property with the name 'childComment'.
In the debug I navigate to the childComment and this is its HTML visualisar:

new System.Linq.SystemCore_EnumerableDebugView<DataAccessLayer.Comment>(((ASP.usercontrols_comments_ascx)this).Comments)).Items[0]._comments_Replies.entities.items[0].childComment

I tried

<%# DataBinder.Eval(Container.DataItem, "_comments_Replies.childcomment")

Same as above error came to me.

View 1 Replies


Similar Messages:

Forms Data Controls :: Display Data From This Table In A Gridview Using Template Fields

Oct 26, 2010

I have a datatable with the following column names

ProviceID, ProvinceName, Year,
TPM, PM 10, PM 2.5, B(a)p

I'm trying to display data from this table in a gridview using template fields. Here's an example of a label in my item template

[Code]....

When i bind data to this grid view, i get an error saying column "PM 2" was not found. For some reason, the program is dropping the .5 from the column name. I am exploring the possibility of replacing the number with alphabets only but this may not be possible as the end user may not find it user friendly. Is there a way for me to get around this problem? I get a similar problem with B(a)p, it drops everything after the B. Any ideas on how to get the gridview to bind column names with special chars in it?

View 3 Replies

Forms Data Controls :: Is It Possible To Display The FullName Based On The Member Fields Of The Table

Dec 16, 2010

I am trying to display in the Gridview the Full Name of a person.

I have MemberFirstName and MemberLastName as fields in the Table.

Is it possible to display the FullName based on the member fields of the table ?

View 2 Replies

Data Controls :: Change Or Modify Values Of GridView Column Fields Before It Is Rendered

Dec 28, 2012

I have a GridView that gets populated with data from a SQL database

Now i want to replace values in my one column like so......

If category  value is a 0 then display Admin in the GridView.

If category value is 1 then display user in the GridView

category is col name in gridview and sql table

View 1 Replies

Forms Data Controls :: Menu Control Is Rendered As A Table?

Jan 13, 2011

Anyone out there who can explain me how to prevent a menu control from being rendered as a table?

View 2 Replies

Web Forms :: DropDownList Accessing SelectedItem Property After Binding It ?

Oct 28, 2010

So here is the problem , Is it possible to get the "SelectedItem.Text" of a binded dropdownlist? because everytime I'm getting null Even though I'm having
items in the dropdownlist.

I'm getting the items that I want in the dropdownlist but I can't find out which one is selected.

[Code]....

here is my aspx code:

[Code]....

View 3 Replies

Forms Data Controls :: How To Pass Control Reference To Its Property In Data Binding Expression

Nov 24, 2010

Here is data binding expression (dropdown list is nested in gridview)

[Code]....

Code Behind has function which looks like

[Code]....

The whole reason for passing the reference is to save round trip to database and not to use SESSION

View 4 Replies

Forms Data Controls :: Binding A GridView Column To Different Fields?

Dec 2, 2010

I have a web page with an object data source that is connect to an object access layer which retrirevs an Id, Name_En and Name_Local from some table, the object data source is connected to a GirdView, In the girdview i have a template control with a label inside it, i want to change the binding expression for the label depending on the current states of localization so for example if the page is arabic the label should bind to "Name_Local", if it's english then it should bind to "Name_En"

View 1 Replies

Forms Data Controls :: Binding Gridview To Dataset, Field Or Property Not Found On The Selected Data Source?

Apr 9, 2010

[Code]....

[Code]....

[Code]....

View 3 Replies

Forms Data Controls :: Accessing To DetailsView Fields To Set Classe's Attributes?

Jan 11, 2011

I'm a beginner in Asp.Net and i have some problems to resolve. (It's hard to find good threads in french community)

I've a DetailsView linked to a GridView, in fact the DetailsView get the selected item of the GridView to return the associated datas.

I would like on the load of my DetailsView to get the values of the labels contained in my DetailsView to set my class's attributes.

But my .cs can't recognize the IDs of my DetailsView's Labels...

View 3 Replies

Forms Data Controls :: Accessing Child Datagrid Controls From Parent Grid Datacommand Event?

Aug 23, 2010

i want to access the child datagrid controls from parent datagrid command event.

View 4 Replies

Forms Data Controls :: Image Binding In Datalist?

Jun 18, 2010

I have downloaded a slideshow code snipper form one of the website, it works well when loaded with static images, but i want to display the slideshow dynamically

i have used a datalist, but the slide show is not working,

here is my code

<form
id="form1"
runat="server"> [code].....

View 4 Replies

Forms Data Controls :: Binding More Than One DataList With Same DataReader?

Feb 12, 2010

i have ParentDataLits and this ParentDataList Contains Man Childs DataLists,

i want to know how i can Bind them with the Same DataReader without using any Collectins , Arrays ...ect?

if this is not possible whats the good solution for that? note: i dont want to update or delete these data, only dislpay them.

View 2 Replies

Forms Data Controls :: Binding GenricList To DataList?

Mar 28, 2010

I have a requirement to access DataTable from BLL.I want to access the same via a genric list.I have tried converting the same but all in Vain...I am a fresher at ASP .NET Here is the code I am using to convert

[Code]....

Then I am binding the code as follows
[Code]....

Is there any other way Out?As I am not getting the query results in return

View 3 Replies

Forms Data Controls :: Preventing The Display Of Titles For Data Fields If The Data Field Is Empty In ListView?

Nov 14, 2010

I have a listview control bound to an SqlDataSource. As part of the formatting I want to add a title to the data returned from my database. For instance if the data base returns a phone number I want to add 'Tel.' first. However I do not want to diplay this
title if the datafield is empty. Here is what I have done so far.

<ItemTemplate>
<asp:Label ID="BusinessLabel" runat="server" Text='<%# "Tel. "+Eval("Business") %>' CssClass="TeleStyle" />

Or This:Tel.
<asp:Label ID="BusinessLabel" runat="server" Text='<%# Eval("Business") %>' CssClass="TeleStyle" />
</ItemTemplate>

Business is a phone number. If the data field contains a number I get: Tel. 1234 123456. If the field is empty I get Tel. If Business is null I want nothing dsplayed, how do I do this?

View 3 Replies

Forms Data Controls :: Accessing Values From A Database With Datalist?

Aug 25, 2010

I have a datalist and I am filling it using a dataadapter, dataset. So in my .ascx page, I have

<asp:datalist runat="server" id="dlProducts" repeatcolumns="2" repeatdirection="horizontal">
<itemtemplate>
<table border="0">
<tr><td><%# Eval("Item_Name") %></td></tr>
<tr><td>I have to add a picture here</td><td><%# Eval("First_Name") %></td></tr>
</table>
</itemtemplate>
</asp:datalist>

In the area where I have put a statement like "I have to add a picture here", I have write a big case statement. Like:

Case: 6 // show a picture from file1
case: 7 // show a picture from file2
Case 8: //show a picture from file3

So How do I do this here? Because I dont know how to access the datalist values from code behind.

Here is my code behind:

SQLString = "SELECT First_Name, Picture, item_name, item_id from table1 where item_id = " + request.querystring["iid"];
dataadapter daItems = new dataadapter(SQLString, "connection_name");
dataset dsItems = new dataset();
daItems.fill(dsItems);
dlProducts.datasource = dsItems();

//So at this point how do I populate the picture in the <TD> tag I mentioned earlier?

View 2 Replies

Forms Data Controls :: Accessing DataList Dataitems In Code Behind?

Jan 14, 2010

I'm currently running with this.

[Code]....

Works find on initial page load, but gives me "Object variable or With block variable not set."
on this like "ColourHex = e.Item.DataItem("ColourHex")" on postback?

View 2 Replies

Forms Data Controls :: Parent/Child Datalist Displays Correctly Sort Of?

Jan 11, 2011

I have created a search page for web application that will allow a user to search the database based upon employee name or supervisor name. It is a multiple table database that is linked together by an unique employee number column, primary key in people and foreign key in supervisor. I have a parent/ child datalist used to display the record. When searching by the employee name it will return the record correctly if there is a record found. However, if I search by supervisor name and there is no match for the supervisor name, it will return all the records and create the parent datalist with all the employee details there, but the child datalist with the supervisor information is not display as there is no record with that supervisor name.

[code]...

View 1 Replies

Forms Data Controls :: BInding Datalist / How To Pass The School_ID ?

Aug 4, 2010

i am creating one gallery in datalist, i am getting images from db with reference of perticular id like this

<td>
<asp:Label runat="server" ID="lblCID" ForeColor="OrangeRed" Text='<%#Bind("School_ID") %>'></asp:Label>
</td>
<td>
<asp:Image ID="Image1" runat="server" ImageUrl = '<%# "Gallery.ashx?id=" + Eval("School_ID")%>'

Width = "200px" Height = "200px" onclick = "LoadDiv(this.src, this)" style ="cursor:pointer" />

</td>

e how can i pass the School_ID in above,i have been trying but i cant

View 4 Replies

Forms Data Controls :: Binding Datalist - Null Value Does Not Bind?

Dec 21, 2010

i have datalist.i can bind datalist but problem is that null value does not bind.but all values are not null.

my scenerio is asign click btn click then view open then insertion and save.if free class btn click then another view open and then insertion...in asign class it can bind but free class not bind.while i m providing day and period also.so why they canot bind?

View 7 Replies

Forms Data Controls :: How To Refresh DataList Control On Parent Page After Data Submission From The Iframe Page

Jan 11, 2010

How can i refresh(Asych) the contents of my Datalist on the parent page from a data change in a page that is displayed in an iFrame on the parent page.

I have movie names with image in the data list that is on parent page.

there another page is openend in the parent pages in an iFrame control.

in that sub page i upload image and other data related to a new movie.

What i want is that when i submit that information in an iFrame page, the DataList should update(Asych) itself on the parent page showing new updated info.

the structure is like;

[code]...

View 1 Replies

Forms Data Controls :: How To Set The TextBox.Text Property Of The Parent Page From The RowCommand Event

Mar 31, 2011

i have some textboxes in my parent page and a search button. when the search button is clicked, my modalpopup pops up. after chosing (clicking on the select button of the row) an entry from a gridview within my modalpopup (each row in the gridview has a buttonField), the rowCommand_Event fires... within this event i try to set the .Text property of some textboxes within the page containing my modalpopupExtender... i get no exceptions, but the textboxes are not set...

ModalPopupExtender:

[Code]....

ModalPopupPanel:

[Code]....

RowCommandEvent:

[Code]....

View 7 Replies

Forms Data Controls :: Changing Fields Visible Property To False In DetailsView?

Apr 15, 2010

I have a problem that in DetailsView Edit Mode, if I go to edit fields, and set a fields visible property to false, when I update the record through the built in update options it sends a null value. If I change the field back to visible, it passes the data just fine.

Consequently, I tried just setting the field to Read Only = True, and got the same result even though the current values do show up in the edit mode, just read only.Is there anyway to hide the field but still allow it to pass the data it currently has "BACK" into the record.

View 2 Replies

Forms Data Controls :: Dynamically Populating Fields In A Gridview Depending On Data In A Table?

Jul 17, 2010

I have a gridview that is populating from a SQL DB and working fine. However, based upon certain data I find in fields in the SQL table, I want to place a 'n' or a 'y' in extra columns in the gridview that I am assuming need to be templatefields. My thought was I could maybe add 8 template columns and then I could put a 'y' in the appropriate column based upon the data I find the table. For the life of me, I cannot figure out how to do this. I want to do this at rowdatabound time ( i think) but I just cannot find out how to, in my code, put that 'y' in the columns. Is this the right way to do this or do I need to do it another way? How do I get that 'y' in the proper column?

View 3 Replies

Data Controls :: Display Merged Table On Same DataList That Is Displaying Another Merged Tables

Apr 27, 2016

I want to display another merged table on the same datalist showing another merged table so that any of the displayed merged table that recieves data first will show on top of the datalist.This is the first merged table showing on datalist

SET QUOTED_IDENTIFIER ON
GO
ALTER PROC [dbo].[GetMessage]
@UserName VARCHAR(200)
AS
BEGIN
SELECT

[code]...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved